/
Alex_Ural
/
opencode
Обзор
Документация
Войти
/
Alex_Ural
/
opencode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
packages/core/src/data-migration.sql.ts
6 строк
207 B
Dax
refactor(core): move database schema ownership (#29068)
31 май 2026, 04:08
Не верифицирован
31 май 2026, 04:08
7f571d3
Код
Авторство
О чём код?
import { integer, sqliteTable, text } from "drizzle-orm/sqlite-core" export const DataMigrationTable = sqliteTable("data_migration", { name: text().primaryKey(), time_completed: integer().notNull(), })