forked from neri/datatrash
neri
77fd25b787
a new database column was introduced for delete on download. the model should be migrated automatically. Fixes #4
10 lines
292 B
SQL
10 lines
292 B
SQL
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;
|