mirror of
https://github.com/zoriya/tide.git
synced 2026-06-02 02:25:47 +00:00
Create first migration
This commit is contained in:
@@ -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)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user