feat(onboarding): add settings.onboarding column + markOnboardingDoneAction

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Théo LAGACHE
2026-06-18 10:57:25 +02:00
co-authored by Claude Sonnet 4.6
parent eade74be6e
commit 9183d6dfcb
6 changed files with 3022 additions and 1 deletions
+1
View File
@@ -20,6 +20,7 @@ export const setting = pgTable("settings", {
defaultStorageChannelId: uuid('default_storage_channel_id')
.references(() => storageChannel.id, {onDelete: "set null"}),
encryption: boolean("encryption").default(false),
onboarding: boolean("onboarding").default(false).notNull(),
...timestamps
});