Fix gruntmaster-problem edit
[gruntmaster-data.git] / db.sql
CommitLineData
4ed3f8e7 1CREATE TABLE users (
2fec2d56 2 id TEXT PRIMARY KEY,
9bb39921 3 passphrase TEXT, -- NOT NULL,
2fec2d56 4 admin BOOLEAN NOT NULL DEFAULT FALSE,
4ed3f8e7
MG
5 name TEXT, -- NOT NULL,
6 email TEXT, -- NOT NULL,
9a987597 7 phone TEXT, -- NOT NULL,
4ed3f8e7
MG
8 town TEXT, -- NOT NULL,
9 university TEXT, -- NOT NULL,
9bb39921 10 level TEXT, -- NOT NULL,
73243865 11 country TEXT,
4ed3f8e7
MG
12 lastjob BIGINT
13);
14
15CREATE TABLE contests (
16 id TEXT PRIMARY KEY,
17 name TEXT NOT NULL,
18 start INT NOT NULL,
19 stop INT NOT NULL,
9bb39921 20 owner TEXT NOT NULL REFERENCES users ON DELETE CASCADE,
4ed3f8e7
MG
21 CONSTRAINT positive_duration CHECK (stop > start)
22);
23
adb42d4d
MG
24CREATE TABLE contest_status (
25 contest TEXT NOT NULL REFERENCES contests ON DELETE CASCADE,
26 owner TEXT NOT NULL REFERENCES users ON DELETE CASCADE,
27 score INT NOT NULL,
28 rank INT NOT NULL,
29
30 PRIMARY KEY (owner, contest)
31);
32
4ed3f8e7
MG
33CREATE TABLE problems (
34 id TEXT PRIMARY KEY,
20fa6cfc 35 author TEXT,
6a03bf0d 36 writer TEXT,
9bb39921
MG
37 generator TEXT NOT NULL,
38 judge TEXT NOT NULL,
39 level TEXT NOT NULL,
40 name TEXT NOT NULL,
4ed3f8e7 41 olimit INT,
9bb39921
MG
42 owner TEXT NOT NULL REFERENCES users ON DELETE CASCADE,
43 private BOOLEAN NOT NULL DEFAULT FALSE,
44 runner TEXT NOT NULL,
1980106a 45 solution TEXT ,
9bb39921
MG
46 statement TEXT NOT NULL,
47 testcnt INT NOT NULL,
b2725d9d 48 tests TEXT,
9bb39921 49 timeout REAL NOT NULL,
aaa9eb7d 50 value INT NOT NULL,
85d3f015
MG
51 genformat TEXT,
52 gensource TEXT,
4ed3f8e7
MG
53 verformat TEXT,
54 versource TEXT
55);
56
57CREATE TABLE contest_problems (
9bb39921
MG
58 contest TEXT REFERENCES contests ON DELETE CASCADE,
59 problem TEXT NOT NULL REFERENCES problems ON DELETE CASCADE,
4ed3f8e7
MG
60 PRIMARY KEY (contest, problem)
61);
62
63CREATE TABLE jobs (
64 id SERIAL PRIMARY KEY,
9bb39921 65 contest TEXT REFERENCES contests ON DELETE CASCADE,
4ed3f8e7
MG
66 daemon TEXT,
67 date BIGINT NOT NULL,
68 errors TEXT,
69 extension TEXT NOT NULL,
70 format TEXT NOT NULL,
71 private BOOLEAN NOT NULL DEFAULT FALSE,
9bb39921 72 problem TEXT NOT NULL REFERENCES problems ON DELETE CASCADE,
4ed3f8e7
MG
73 result INT,
74 result_text TEXT,
20fa6cfc 75 results TEXT,
4ed3f8e7 76 source TEXT NOT NULL,
9bb39921 77 owner TEXT NOT NULL REFERENCES users ON DELETE CASCADE
4ed3f8e7
MG
78);
79
adb42d4d
MG
80CREATE TABLE problem_status (
81 problem TEXT NOT NULL REFERENCES problems ON DELETE CASCADE,
82 owner TEXT NOT NULL REFERENCES users ON DELETE CASCADE,
83 job SERIAL NOT NULL REFERENCES jobs ON DELETE CASCADE,
84 solved BOOLEAN NOT NULL DEFAULT FALSE,
85
86 PRIMARY KEY (owner, problem)
87);
88
4ed3f8e7 89CREATE TABLE opens (
9bb39921
MG
90 contest TEXT NOT NULL REFERENCES contests ON DELETE CASCADE,
91 problem TEXT NOT NULL REFERENCES problems ON DELETE CASCADE,
92 owner TEXT NOT NULL REFERENCES users ON DELETE CASCADE,
4ed3f8e7
MG
93 time BIGINT NOT NULL,
94 PRIMARY KEY (contest, problem, owner)
95);
be2f7678
MG
96
97CREATE TABLE table_comments (
98 table_name TEXT NOT NULL PRIMARY KEY,
99 comment_text TEXT NOT NULL
100);
101
102CREATE TABLE column_comments (
103 table_name TEXT NOT NULL,
104 column_name TEXT NOT NULL,
105 comment_text TEXT NOT NULL,
106 PRIMARY KEY (table_name, column_name)
107);
108
109INSERT INTO table_comments VALUES ('users', 'List of users');
110INSERT INTO table_comments VALUES ('contests', 'List of contests');
111INSERT INTO table_comments VALUES ('contest_status', 'List of (contest, user, result)');
112INSERT INTO table_comments VALUES ('problems', 'List of problems');
113INSERT INTO table_comments VALUES ('contest_problems', 'Many-to-many bridge between contests and problems');
114INSERT INTO table_comments VALUES ('jobs', 'List of jobs');
115INSERT INTO table_comments VALUES ('problem_status', 'List of (problem, user, result)');
116INSERT INTO table_comments VALUES ('opens', 'List of (contest, problem, user, time when user opened problem)');
117
118INSERT INTO column_comments VALUES ('users', 'passphrase', 'RFC2307-encoded passphrase');
119INSERT INTO column_comments VALUES ('users', 'name', 'Full name of user');
120INSERT INTO column_comments VALUES ('users', 'level', 'Highschool, Undergraduate, Master, Doctorate or Other');
121INSERT INTO column_comments VALUES ('users', 'lastjob', 'Unix time when this user last submitted a job');
122
123INSERT INTO column_comments VALUES ('contests', 'start', 'Unix time when contest starts');
124INSERT INTO column_comments VALUES ('contests', 'stop', 'Unix time when contest ends');
125
126INSERT INTO column_comments VALUES ('problems', 'author', 'Full name(s) of problem author(s)/problemsetter(s)/tester(s)/etc');
127INSERT INTO column_comments VALUES ('problems', 'writer', 'Full name(s) of statement writer(s) (DEPRECATED)');
128INSERT INTO column_comments VALUES ('problems', 'generator', 'Generator class, without the leading Gruntmaster::Daemon::Generator::');
129INSERT INTO column_comments VALUES ('problems', 'runner', 'Runner class, without the leading Gruntmaster::Daemon::Runner::');
130INSERT INTO column_comments VALUES ('problems', 'judge', 'Judge class, without the leading Gruntmaster::Daemon::Judge::');
131INSERT INTO column_comments VALUES ('problems', 'level', 'Problem level, one of beginner, easy, medium, hard');
132INSERT INTO column_comments VALUES ('problems', 'olimit', 'Output limit (in bytes)');
133INSERT INTO column_comments VALUES ('problems', 'timeout', 'Time limit (in seconds)');
134INSERT INTO column_comments VALUES ('problems', 'solution', 'Solution (HTML)');
135INSERT INTO column_comments VALUES ('problems', 'statement', 'Statement (HTML)');
136INSERT INTO column_comments VALUES ('problems', 'testcnt', 'Number of tests');
137INSERT INTO column_comments VALUES ('problems', 'tests', 'JSON array of test values for ::Runner::File');
138INSERT INTO column_comments VALUES ('problems', 'value', 'Problem value when used in a contest.');
139INSERT INTO column_comments VALUES ('problems', 'genformat', 'Format (programming language) of the generator if using the Run generator');
140INSERT INTO column_comments VALUES ('problems', 'gensource', 'Source code of generator if using the Run generator');
141INSERT INTO column_comments VALUES ('problems', 'verformat', 'Format (programming language) of the verifier if using the Verifier runner');
142INSERT INTO column_comments VALUES ('problems', 'versource', 'Source code of verifier if using the Verifier runner');
143
144INSERT INTO column_comments VALUES ('jobs', 'daemon', 'hostname:PID of daemon that last executed this job. NULL if never executed');
145INSERT INTO column_comments VALUES ('jobs', 'date', 'Unix time when job was submitted');
146INSERT INTO column_comments VALUES ('jobs', 'errors', 'Compiler errors');
147INSERT INTO column_comments VALUES ('jobs', 'extension', 'File extension of submitted program, without a leading dot');
148INSERT INTO column_comments VALUES ('jobs', 'format', 'Format (programming language) of submitted program');
149INSERT INTO column_comments VALUES ('jobs', 'result', 'Job result (integer constant from Gruntmaster::Daemon::Constants)');
150INSERT INTO column_comments VALUES ('jobs', 'result_text', 'Job result (human-readable text)');
151INSERT INTO column_comments VALUES ('jobs', 'results', 'Per-test results (JSON array of hashes with keys id (test number, counting from 1), result (integer constant from Gruntmaster::Daemon::Constants), result_text (human-readable text), time (execution time in decimal seconds))');
152
153INSERT INTO column_comments VALUES ('problem_status', 'solved', 'True if the result is Accepted, False otherwise');
This page took 0.021162 seconds and 4 git commands to generate.