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:
@@ -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` );
|
||||
|
||||
queXS 1.15.10 - Changes since 1.15.9
|
||||
|
||||
@@ -355,7 +355,7 @@ INSERT INTO `day_of_week` (`day_of_week`) VALUES(7);
|
||||
|
||||
CREATE TABLE `extension` (
|
||||
`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,
|
||||
`status` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`current_operator_id` bigint(20) DEFAULT NULL,
|
||||
|
||||
Reference in New Issue
Block a user