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:
Wei Zhou 2023-02-01 11:13:13 +01:00 committed by GitHub
parent 67b60385af
commit 8483e8a77e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;