theming, date, time localisation, additional features, seeding initial cleanup
This commit is contained in:
@@ -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(),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user