Add versioned project settings modal
This commit is contained in:
parent
e1fc81a083
commit
d77cfbeb49
22 changed files with 2563 additions and 111 deletions
|
|
@ -3,6 +3,10 @@ import { integer, sqliteTable, text } from "drizzle-orm/sqlite-core";
|
|||
export const projects = sqliteTable("projects", {
|
||||
id: text("id").primaryKey(),
|
||||
name: text("name").notNull(),
|
||||
internalProjectNumber: text("internal_project_number"),
|
||||
externalProjectNumber: text("external_project_number"),
|
||||
buildingOwner: text("building_owner"),
|
||||
description: text("description"),
|
||||
singlePhaseVoltageV: integer("single_phase_voltage_v").notNull().default(230),
|
||||
threePhaseVoltageV: integer("three_phase_voltage_v").notNull().default(400),
|
||||
currentRevision: integer("current_revision").notNull().default(0),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue