mirror of
https://github.com/Blah-IM/Weblah.git
synced 2025-05-22 10:01:08 +00:00
6 lines
174 B
TypeScript
6 lines
174 B
TypeScript
import { sqliteTable, text } from 'drizzle-orm/sqlite-core';
|
|
|
|
export const configs = sqliteTable('weblah-config', {
|
|
key: text('key').primaryKey(),
|
|
value: text('value')
|
|
});
|