feat(seed-database/Users): Update default value to true for isRecentViewActivated and isBookmarkSyncActivated

This commit is contained in:
Aminejv 2022-11-21 15:55:39 +01:00
parent 8627b49780
commit d1eaf6d33f

View File

@ -58,9 +58,9 @@ const createUsersTable = createTableIfNotExists("users", function (table) {
table.boolean("hasCompletedSlatesOnboarding").defaultTo(false);
table.boolean("isFilterSidebarCollapsed").defaultTo(false);
table.boolean("isRecentViewActivated").defaultTo(false);
table.boolean("isFilesViewActivated").defaultTo(false);
table.boolean("isBookmarkSyncActivated").defaultTo(false);
table.boolean("isRecentViewActivated").defaultTo(true);
table.boolean("isBookmarkSyncActivated").defaultTo(true);
table.boolean("hasCompletedExtensionOBFirstStep").defaultTo(false);
table.boolean("hasCompletedExtensionOBSecondStep").defaultTo(false);
table.boolean("hasCompletedExtensionOBThirdStep").defaultTo(false);