feat: moved files into a better position for organization closes #8

This commit is contained in:
2023-09-21 16:43:11 +01:00
parent b8278bacf6
commit 1986be1a84
16 changed files with 582 additions and 500 deletions

View File

@@ -1,4 +1,4 @@
-- drop table if exists model_defenitions
-- drop table if exists model_defenitions;
-- drop table if exists models;
create table if not exists models (
id uuid primary key default gen_random_uuid(),
@@ -14,7 +14,9 @@ create table if not exists models (
color_mode varchar (20)
);
-- create table model_defenitions (
-- id uuid primary key default gen_random_uuid(),
-- model_id uuid references models (id) not null,
-- )
-- drop table if exists model_classes;
create table if not exists model_classes (
id uuid primary key default gen_random_uuid(),
model_id uuid references models (id) not null,
name varchar (70) not null
);