blob: 63b3172702e3a272622c227162ce826b448ddf6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
drop table general.gallery cascade;
create table general.gallery (
id serial8 primary key,
description text,
filename character varying(255) not null,
mime_type character varying(255) not null,
content bytea not null,
created timestamp without time zone not null default now(),
modified timestamp without time zone not null default now()
);
|