summaryrefslogtreecommitdiffstats
path: root/modules-available/baseconfig_partitions_cdn/install.inc.php
blob: f40920781746d3d616d9ad0dc7efe1fafb95973c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php

$res = array();

$res[] = tableCreate('setting_partition', "
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `partition_id` varchar(110) NOT NULL,
  `size` varchar(110) NOT NULL,
  `mount_point` varchar(110) NOT NULL,
  `options` varchar(110) NOT NULL,
  `user` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `user` (`user`)
");

if (in_array(UPDATE_DONE, $res)) {
	Database::exec("ALTER TABLE `setting_partition`
		ADD CONSTRAINT `setting_partition_ibfk_1` FOREIGN KEY (`user`) REFERENCES `user` (`userid`)");
}

// Update path

// -- none --

// Create response for browser

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

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