Add background code migration service (#26652)

This commit is contained in:
Dax 2026-05-10 20:16:42 -04:00 committed by GitHub
commit 7cea32ee08
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 1635 additions and 0 deletions

View 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(),
})