forked from neri/datatrash
8 lines
213 B
SQL
8 lines
213 B
SQL
CREATE TABLE IF NOT EXISTS files (
|
|
id serial,
|
|
file_id varchar(255) not null,
|
|
file_name varchar(255) not null,
|
|
valid_till timestamp not null,
|
|
kind varchar(255) not null,
|
|
primary key (id)
|
|
);
|