Weblah/src/lib/db/schema/config.ts
2024-10-01 03:10:24 +08:00

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')
});