Skip to content

Commit 73628f9

Browse files
committed
Fix compilation
1 parent c4df4bf commit 73628f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ServerLib/Database/ServerDatabase.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ namespace tsom
194194
{
195195
SQLite::Statement query(m_database, "SELECT name FROM migration");
196196
while (query.executeStep())
197-
migrated.insert(query.getColumn(0));
197+
migrated.insert(query.getColumn(0).getText());
198198
}
199199

200200
std::vector<std::string> remainingMigrationScripts;

0 commit comments

Comments
 (0)