Add IsTerminated column

feature/node-rewrite
Sven Slootweg 12 years ago
parent b7a2150625
commit c0b1e519ae

@ -46,6 +46,9 @@ class Vps extends CPHPDatabaseRecordClass
'timestamp' => array( 'timestamp' => array(
"TerminationDate" => "TerminationDate" "TerminationDate" => "TerminationDate"
), ),
'boolean' => array(
"IsTerminated" => "Terminated"
),
'node' => array( 'node' => array(
'Node' => "NodeId" 'Node' => "NodeId"
), ),

@ -0,0 +1 @@
ALTER TABLE `containers` ADD `Terminated` BOOLEAN NOT NULL;

@ -33,8 +33,9 @@ CREATE TABLE IF NOT EXISTS `containers` (
`TotalTrafficLimit` bigint(20) NOT NULL, `TotalTrafficLimit` bigint(20) NOT NULL,
`UserId` bigint(20) NOT NULL, `UserId` bigint(20) NOT NULL,
`TerminationDate` timestamp NULL DEFAULT NULL, `TerminationDate` timestamp NULL DEFAULT NULL,
`Terminated` tinyint(1) NOT NULL,
PRIMARY KEY (`Id`) PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `ip_assignments` ( CREATE TABLE IF NOT EXISTS `ip_assignments` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT, `Id` bigint(20) NOT NULL AUTO_INCREMENT,
@ -77,7 +78,7 @@ CREATE TABLE IF NOT EXISTS `templates` (
`Available` tinyint(1) NOT NULL, `Available` tinyint(1) NOT NULL,
`Outdated` tinyint(1) NOT NULL, `Outdated` tinyint(1) NOT NULL,
PRIMARY KEY (`Id`) PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `users` ( CREATE TABLE IF NOT EXISTS `users` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT, `Id` bigint(20) NOT NULL AUTO_INCREMENT,

Loading…
Cancel
Save