Files
anyhealth/src/db/schema.ts
T

7 lines
164 B
TypeScript

import { sqliteTable, text } from "drizzle-orm/sqlite-core";
export const metasTable = sqliteTable("metas", {
key: text().primaryKey(),
value: text(),
});