feat: started working on #23

This commit is contained in:
2023-10-02 21:15:31 +01:00
parent bc948d4796
commit a1d1a81ec5
9 changed files with 155 additions and 93 deletions

View File

@@ -21,7 +21,8 @@ create table if not exists models (
create table if not exists model_classes (
id uuid primary key default gen_random_uuid(),
model_id uuid references models (id) on delete cascade,
name varchar (70) not null
name varchar (70) not null,
class_order integer
);
-- drop table if exists model_data_point;