A website for temporary file- or text hosting
https://trash.randomerror.de/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
416 B
12 lines
416 B
CREATE TABLE IF NOT EXISTS files ( |
|
id serial, |
|
file_id varchar(255) not null unique, |
|
file_name varchar(255) not null, |
|
valid_till timestamp not null, |
|
kind varchar(255) not null, |
|
primary key (id) |
|
); |
|
|
|
ALTER TABLE files ADD COLUMN IF NOT EXISTS delete_on_download boolean; |
|
ALTER TABLE files ALTER COLUMN delete_on_download set not null; |
|
ALTER TABLE files ALTER COLUMN valid_till TYPE timestamptz;
|
|
|