mirror of https://github.com/apache/cloudstack.git
Apple FR68: modify "passphrase" column to varchar(255) (#227)
For existing environments, please modify the column by ALTER TABLE `cloud`.`passphrase` MODIFY COLUMN `passphrase` varchar(255) DEFAULT NULL;
This commit is contained in:
parent
67b60385af
commit
8483e8a77e
|
|
@ -212,7 +212,7 @@ CREATE VIEW `cloud`.`event_view` AS
|
|||
-- Add passphrase table
|
||||
CREATE TABLE IF NOT EXISTS `cloud`.`passphrase` (
|
||||
`id` bigint unsigned NOT NULL auto_increment,
|
||||
`passphrase` varchar(64) DEFAULT NULL,
|
||||
`passphrase` varchar(255) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue