Add weather

This commit is contained in:
2024-09-04 22:59:21 +02:00
parent 043757bffd
commit c55df1e120
10 changed files with 418 additions and 4 deletions

View File

@@ -17,6 +17,7 @@ export const users = sqliteTable('users', {
private: integer('private', { mode: 'boolean' }).default(false),
language: text('language').default('en-EN'),
location: text('location').default('unknown'),
weatherTab: integer('weather_tab', { mode: 'boolean' }).default(0),
subscription: text('subscription', { enum: Subscription }).default('free'),
...timestamps,
})