Skip to content
Snippets Groups Projects
Commit 30fd2a84 authored by MELERIX's avatar MELERIX
Browse files

BETA: Small Improvement for [8870].

parent cfc6ff6b
No related branches found
No related tags found
No related merge requests found
ALTER TABLE `characters` ADD `createDate` date NOT NULL DEFAULT '0000-00-00' AFTER `createTime`;
UPDATE `characters` SET `createDate`=CURDATE() WHERE `createDate`='0000-00-00';
UPDATE `characters` SET `createDate`=CURDATE() WHERE `createDate`<'2004-00-00';
ALTER TABLE `characters` DROP `createTime`;
ALTER TABLE `messages` CHANGE `isFourStars` `sendBySystem` tinyint(1) unsigned NOT NULL DEFAULT '0' AFTER `isLocked`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment