Create first migration

This commit is contained in:
2023-09-17 15:37:51 +02:00
parent aea27c6181
commit f53e4f82f4
10 changed files with 66 additions and 5 deletions
@@ -0,0 +1,2 @@
DROP TABLE items;
@@ -0,0 +1,9 @@
CREATE TABLE items (
id varchar(255) NOT NULL,
name varchar(255) NOT NULL,
path text NOT NULL,
size bigint,
files json,
PRIMARY KEY (id)
);