Buckets:
| 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] })], | |
| ) | |
Xet Storage Details
- Size:
- 1.18 kB
- Xet hash:
- 581fa503a0cd6a28a30e114b52c80c71efe7c1dae0834ab53163721feefea67b
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.