mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-24 02:46:33 +01:00
CharDB Schema/Cleanup: cleanup channels table:
* rename columns (remove m_ prefix and convert to lowerCamel case); * rename prepared statements to conform to standards (there is no CLEAN statement).
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
ALTER TABLE `channels` CHANGE COLUMN `m_name` `name` varchar(128) NOT NULL,
|
||||
CHANGE COLUMN `m_team` `team` int(10) unsigned NOT NULL,
|
||||
CHANGE COLUMN `m_announce` `announce` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
||||
CHANGE COLUMN `m_ownership` `ownership` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
||||
CHANGE COLUMN `m_password` `password` varchar(32) DEFAULT NULL,
|
||||
CHANGE COLUMN `BannedList` `bannedList` text,
|
||||
CHANGE COLUMN `last_used` `lastUsed` int(10) unsigned NOT NULL;
|
||||
Reference in New Issue
Block a user