mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-24 12:53:33 +00:00
6 lines
207 B
TypeScript
6 lines
207 B
TypeScript
import { integer, sqliteTable, text } from "drizzle-orm/sqlite-core"
|
|
|
|
export const DataMigrationTable = sqliteTable("data_migration", {
|
|
name: text().primaryKey(),
|
|
time_completed: integer().notNull(),
|
|
})
|