- Remove DEFAULT CHARSET declarations from all SQL table definitions - Strip COLLATE clauses from field definitions across all database scripts - Simplify ENGINE declarations by removing redundant charset specifications - Standardize SQL statement formatting for improved database compatibility - Affects all database update scripts from version 0.1 to 21.7.6
5 lines
311 B
SQL
5 lines
311 B
SQL
ALTER TABLE `zt_extension` ADD `depends` VARCHAR( 100 ) NOT NULL AFTER `installedTime`;
|
|
ALTER TABLE `zt_extension` CHANGE `zentaoVersion` `zentaoCompatible` VARCHAR( 100 ) NOT NULL;
|
|
ALTER TABLE `zt_company` DROP `pms`;
|
|
ALTER TABLE `zt_bug` ADD `plan` mediumint(8) unsigned NOT NULL DEFAULT '0' AFTER `project`;
|