/
Alex_Ural
/
opencode
Обзор
Документация
Войти
/
Alex_Ural
/
opencode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
packages/core/src/project/sql.ts
35 строк
1 KB
James Long
feat(core): refactor project copies for v2 (#31943)
12 июн 2026, 21:45
Не верифицирован
12 июн 2026, 21:45
c2e6b18
Код
Авторство
О чём код?
import { sqliteTable, text, integer, primaryKey } from "drizzle-orm/sqlite-core" import * as DatabasePath from "../database/path" import { Timestamps } from "../database/schema.sql" import { ProjectSchema } from "./schema" export const ProjectTable = sqliteTable("project", { id: text().$type<ProjectSchema.ID>().primaryKey(), worktree: DatabasePath.absoluteColumn().notNull(), vcs: text(), name: text(), icon_url: text(), icon_url_override: text(), icon_color: text(), ...Timestamps, time_initialized: integer(), sandboxes: DatabasePath.absoluteArrayColumn().notNull(), commands: text({ mode: "json" }).$type<{ start?: string }>(), }) export const ProjectDirectoryTable = sqliteTable( "project_directory", { project_id: text() .$type<ProjectSchema.ID>() .notNull() .references(() => ProjectTable.id, { onDelete: "cascade" }), directory: DatabasePath.absoluteColumn().notNull(), type: text().$type<"main" | "root" | "git_worktree">(), strategy: text(), time_created: integer() .notNull() .$default(() => Date.now()), }, (table) => [primaryKey({ columns: [table.project_id, table.directory] })], )