theming, date, time localisation, additional features, seeding initial cleanup

This commit is contained in:
mikicvi
2025-09-26 21:12:59 +01:00
parent b89d91ade2
commit 22c462c61c
43 changed files with 2647 additions and 550 deletions
+3
View File
@@ -12,6 +12,9 @@ export const users = sqliteTable('users', {
role: text('role', { enum: ['user', 'admin'] })
.notNull()
.default('user'),
themePreference: text('theme_preference', { enum: ['light', 'dark', 'system'] })
.notNull()
.default('system'),
createdAt: integer('created_at', { mode: 'timestamp' }).notNull(),
updatedAt: integer('updated_at', { mode: 'timestamp' }).notNull(),
});