blob: 86f3f851bbe8fdb9cf399628172842f1dd51cb4f (
plain) (
tree)
|
|
<?php
$res = array();
$res[] = tableCreate('location_info', '
`locationid` INT(11) NOT NULL,
`hidden` BOOLEAN NOT NULL DEFAULT 0,
`openingtime` VARCHAR(2000) NOT NULL,
`config` VARCHAR(2000) NOT NULL,
`calendar` VARCHAR(2000) NOT 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');
|