summaryrefslogtreecommitdiff
path: root/sql/tables/general.gallery.sql
blob: 972ae67baf3f111721b6ab1c9d80f4098e90e533 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
drop table general.gallery cascade;

create table general.gallery (
    id serial8 primary key,
    description text,
    filename character varying(255),
    mime_type character varying(255),
    video_embed_url character varying(255),
    content bytea,
    created timestamp without time zone not null default now(),
    modified timestamp without time zone not null default now()
);