summaryrefslogblamecommitdiffstats
path: root/modules-available/exams/install.inc.php
blob: b61a0af20eb413e107045438935a46f2f50e5b76 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                              
<?php

$res = array();

$res[] = tableCreate('exams', '
    `examid` int(11) NOT NULL AUTO_INCREMENT,
    `starttime` int(11) NOT NULL,
    `endtime` int(11) NOT NULL,
    `description` varchar(100) DEFAULT NULL,
    PRIMARY KEY (`examid`)
    ');


if (in_array(UPDATE_DONE, $res)) {
    finalResponse(UPDATE_DONE, 'Tables created successfully');
}

finalResponse(UPDATE_NOOP, 'Everything already up to date');