mirror of
https://github.com/Blah-IM/Weblah.git
synced 2025-07-15 18:25:33 +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')
|
|
});
|