Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1285 → Rev 1286

/FileXch/branches/php-impl/sql/tables.sql
0,0 → 1,17
create table sessions (
id serial primary key,
name varchar(16) not null unique key,
owner varchar(16) not null,
created timestamp not null default current_timestamp,
expire timestamp null default null,
size_limit int null default null,
count_limit int null default null,
downloadable bool not null default true,
uploadable bool not null default true,
deletable bool not null default false,
public_comment text null default null,
private_comment text null default null,
blocked bool not null default false,
removed bool not null default false
);