summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/install.inc.php
blob: 807e2826a09bae079bedfafe73cabf6cfe1caa99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

$res = array();

$res[] = tableCreate('locationinfo', '
	`locationid` INT(11) NOT NULL,
	`hidden` BOOLEAN NOT NULL DEFAULT 0,
	`computers` BLOB DEFAULT NULL,
	PRIMARY KEY (`locationid`)
');

// Create response for browser

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

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