Skip to content

Commit

Permalink
Fixes migrations setup
Browse files Browse the repository at this point in the history
  • Loading branch information
crsib committed Apr 18, 2024
1 parent ebd4700 commit e57b2a7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libraries/lib-cloud-audiocom/sync/CloudProjectsDatabase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ CREATE TABLE IF NOT EXISTS migration
version INTEGER
);
INSERT OR IGNORE INTO migration (version) VALUES (0);
INSERT INTO migration (version) VALUES (0);
DELETE FROM migration WHERE ROWID != 1;
)";

const auto addProjectSyncedDialogShownColumn = R"(
Expand Down

0 comments on commit e57b2a7

Please sign in to comment.