Persist Revit CSV configuration

This commit is contained in:
Julian Appel 2026-08-02 16:33:18 +02:00
parent da689af518
commit 219da5ec3b
22 changed files with 2508 additions and 27 deletions

View file

@ -0,0 +1,9 @@
CREATE TABLE `external_csv_configurations` (
`id` text PRIMARY KEY NOT NULL,
`project_id` text NOT NULL,
`configuration_version` integer NOT NULL,
`configuration` text NOT NULL,
FOREIGN KEY (`project_id`) REFERENCES `projects`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE UNIQUE INDEX `external_csv_configurations_project_id_unique` ON `external_csv_configurations` (`project_id`);

File diff suppressed because it is too large Load diff

View file

@ -15,6 +15,13 @@
"when": 1785511894897,
"tag": "0001_add_public_building_setting",
"breakpoints": true
},
{
"idx": 2,
"version": "6",
"when": 1785680771603,
"tag": "0002_awesome_madripoor",
"breakpoints": true
}
]
}