aboutsummaryrefslogtreecommitdiff
path: root/bpkg/database.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/database.cxx')
-rw-r--r--bpkg/database.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/database.cxx b/bpkg/database.cxx
index 5754fae..6b135fc 100644
--- a/bpkg/database.cxx
+++ b/bpkg/database.cxx
@@ -467,7 +467,7 @@ namespace bpkg
auto drop = [this] (const char* table, const char* column)
{
execute (std::string ("ALTER TABLE \"main\".") + table +
- " DROP COLUMN \"" + column + "\"");
+ " DROP COLUMN \"" + column + '"');
};
// @@ TMP See migrate_v13() for details.