feat: moved files into a better position for organization closes #8
This commit is contained in:
@@ -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
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user