Files
lutim/utilities/migrations.sql
Luc Didry c2110dc171 [Not tested] Add Pg support
This commit is dedicated to Schoumi, who is supporting me on Tipeee.
Many thanks :-)
2017-06-02 19:18:10 +02:00

21 lines
422 B
SQL

-- 1 up
CREATE TABLE IF NOT EXISTS lutim (
short text PRIMARY KEY,
path text,
footprint text,
enabled integer,
mediatype text,
filename text,
counter integer default 0,
delete_at_first_view integer,
delete_at_day integer,
created_at integer,
created_by text,
last_access_at integer,
mod_token text,
width integer,
height integer)'
);
-- 1 down
DROP TABLE lutim;