diff options
Diffstat (limited to 'packages/db/schema.ts')
| -rw-r--r-- | packages/db/schema.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/db/schema.ts b/packages/db/schema.ts index c3e8e136..4398523a 100644 --- a/packages/db/schema.ts +++ b/packages/db/schema.ts @@ -297,6 +297,11 @@ export const bookmarksInLists = sqliteTable( }), ); +export const config = sqliteTable("config", { + key: text("key").notNull().primaryKey(), + value: text("value").notNull(), +}); + // Relations export const userRelations = relations(users, ({ many }) => ({ |
