From d3c8e2b520fbffa96a2188755591b12ad365f9e5 Mon Sep 17 00:00:00 2001 From: Christian Speckner Date: Sun, 3 Jan 2021 23:07:40 +0100 Subject: [PATCH] Minor cleanup. --- src/common/repository/sqlite/StellaDb.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/repository/sqlite/StellaDb.cxx b/src/common/repository/sqlite/StellaDb.cxx index faca5a886..78a3dd348 100644 --- a/src/common/repository/sqlite/StellaDb.cxx +++ b/src/common/repository/sqlite/StellaDb.cxx @@ -152,7 +152,7 @@ void StellaDb::importOldStellaDb(const FilesystemNode& node) try { SqliteStatement( *myDb, - "ATTACH DATABASE ? AS old_db" + "ATTACH DATABASE ? AS `old_db`" ) .bind(1, node.getPath()) .step();