mirror of
https://framagit.org/fiat-tux/hat-softwares/lutim.git
synced 2026-05-04 04:22:52 +02:00
21 lines
422 B
SQL
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;
|