mason/common/autohandler: Add an AGPL link to the HTML header.
[odin-cgi] / sql / setup-pastebin.sql
... / ...
CommitLineData
1/* -*-sql-*-
2 *
3 * Plain old SQL for setting up the tables for Odin web services.
4 *
5 * (c) 2015 Mark Wooding
6 */
7
8/*----- Licensing notice ----------------------------------------------------
9 *
10 * This file is part of the `odin.gg' service, `odin-cgi'.
11 *
12 * `odin-cgi' is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Affero General Public License as
14 * published by the Free Software Foundation; either version 3 of the
15 * License, or (at your option) any later version.
16 *
17 * `odin-cgi' is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Affero General Public License for more details.
21 *
22 * You should have received a copy of the GNU Affero General Public
23 * License along with `odin-cgi'; if not, see
24 * <http://www.gnu.org/licenses/>.
25 */
26
27/* The various tools assume that the database is appropriate configured with
28 * the SERIALIZABLE isolation level.
29 */
30
31begin;
32
33drop table if exists odin_pastebin;
34drop table if exists odin_pastebin_lang;
35drop table if exists odin_pastebin_seq;
36
37create table odin_pastebin_lang
38 (lang varchar(32) primary key,
39 descr varchar(64) not null);
40insert into odin_pastebin_lang (lang, descr) values ('txt', 'Plain text');
41
42create table odin_pastebin_seq (seq int);
43insert into odin_pastebin_seq (seq) values (10000);
44
45create table odin_pastebin
46 (tag varchar(16) primary key,
47 stamp bigint not null,
48 edithash varchar(128) not null,
49 owner varchar(64) not null,
50 title varchar(128) not null,
51 lang varchar(32) not null
52 default 'txt'
53 references odin_pastebin_lang (lang)
54 on update cascade
55 on delete set default
56 deferrable initially deferred,
57 content text not null);
58create index odin_pastebin_by_lang on odin_pastebin (lang);
59create index odin_pastebin_by_owner on odin_pastebin (owner);
60
61commit;