Add background code migration service (#26652)
This commit is contained in:
parent
128d10d9e9
commit
7cea32ee08
5 changed files with 1635 additions and 0 deletions
6
packages/opencode/src/data-migration.sql.ts
Normal file
6
packages/opencode/src/data-migration.sql.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
import { integer, sqliteTable, text } from "drizzle-orm/sqlite-core"
|
||||
|
||||
export const DataMigrationTable = sqliteTable("data_migration", {
|
||||
name: text().primaryKey(),
|
||||
time_completed: integer().notNull(),
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue