mirror of
https://github.com/zoriya/tide.git
synced 2026-05-23 23:05:52 +00:00
10 lines
147 B
SQL
10 lines
147 B
SQL
CREATE TABLE items (
|
|
id varchar(255) NOT NULL,
|
|
name varchar(255) NOT NULL,
|
|
path text NOT NULL,
|
|
size bigint,
|
|
files json,
|
|
PRIMARY KEY (id)
|
|
);
|
|
|