2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Fixed issue: Extension column not wide enough for long extensions

This commit is contained in:
Adam Zammit
2018-03-16 15:18:23 +11:00
parent 32c8f49ef1
commit e3e441e321
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
queXS 1.16.0 - Changes since 1.15.10
ALTER TABLE `extension` CHANGE `extension` `extension` CHAR( 20 ) NOT NULL;
ALTER TABLE `sample_var` ADD INDEX ( `var_id` ); ALTER TABLE `sample_var` ADD INDEX ( `var_id` );
queXS 1.15.10 - Changes since 1.15.9 queXS 1.15.10 - Changes since 1.15.9

View File

@@ -355,7 +355,7 @@ INSERT INTO `day_of_week` (`day_of_week`) VALUES(7);
CREATE TABLE `extension` ( CREATE TABLE `extension` (
`extension_id` int(11) NOT NULL AUTO_INCREMENT, `extension_id` int(11) NOT NULL AUTO_INCREMENT,
`extension` char(10) COLLATE utf8_unicode_ci NOT NULL, `extension` char(20) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `password` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0', `status` tinyint(1) NOT NULL DEFAULT '0',
`current_operator_id` bigint(20) DEFAULT NULL, `current_operator_id` bigint(20) DEFAULT NULL,