mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-23 02:36:57 -04:00
7f571d36ea
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
7 lines
207 B
TypeScript
7 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(),
|
|
})
|