1 CREATE TABLE `prefix_tasks` (
\r
2 `ident` int(11) NOT NULL auto_increment,
\r
3 `owner` int(11) NOT NULL,
\r
4 `tasklist` int(11) NOT NULL,
\r
5 `title` text NOT NULL,
\r
6 `description` text NOT NULL,
\r
7 `posted` int(11) NOT NULL,
\r
8 `deadline` int(11) NOT NULL,
\r
9 `access` varchar(128) NOT NULL,
\r
10 PRIMARY KEY (`ident`),
\r
11 KEY `user_id` (`owner`),
\r
12 KEY `posted` (`posted`),
\r
13 KEY `deadline` (`deadline`),
\r
14 KEY `tasklist` (`tasklist`),
\r
15 KEY `access` (`access`)
\r