summaryrefslogblamecommitdiffstats
path: root/modules-available/roomplanner/install.inc.php
blob: f20985d978b004fd287742a6608ab254fea4ba2f (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('location_roomplan', '
	`locationid` INT(11) NOT NULL,
	`roomplan`   BLOB	 DEFAULT NULL,
	PRIMARY KEY (`locationid`)');



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

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