diff options
-rw-r--r-- | bpkg/database.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bpkg/database.cxx b/bpkg/database.cxx index 44712d2..fdfee32 100644 --- a/bpkg/database.cxx +++ b/bpkg/database.cxx @@ -83,8 +83,8 @@ namespace bpkg make_shared<configuration> (optional<string> (), "target")); db.persist (sl); - db.execute ("UPDATE selected_package_prerequisites SET configuration = '" + - sl->uuid.string () + "'"); + db.execute (string ("UPDATE \"main\".selected_package_prerequisites ") + + "SET configuration = '" + sl->uuid.string () + "'"); }); static inline path |