wip: not loading themes until reload, missing in dashboard, bad alignment and scaling
This commit is contained in:
@@ -12,7 +12,8 @@ export const users = pgTable('user', {
|
||||
emailVerified: timestamp('emailVerified', { mode: 'date' }),
|
||||
image: text('image'),
|
||||
password: text('password'),
|
||||
username: text('username').unique()
|
||||
username: text('username').unique(),
|
||||
dashboardTheme: text('dashboard_theme').default('none')
|
||||
});
|
||||
|
||||
export const accounts = pgTable(
|
||||
@@ -70,6 +71,7 @@ export const wishlists = pgTable('wishlists', {
|
||||
publicToken: text('public_token').notNull().unique(),
|
||||
isFavorite: boolean('is_favorite').default(false).notNull(),
|
||||
color: text('color'),
|
||||
theme: text('theme').default('none'),
|
||||
endDate: timestamp('end_date', { mode: 'date' }),
|
||||
createdAt: timestamp('created_at').defaultNow().notNull(),
|
||||
updatedAt: timestamp('updated_at').defaultNow().notNull()
|
||||
|
||||
Reference in New Issue
Block a user