- -- alter table msg_type
- -- modify column `remind_type_id` int(11) unsigned not null default '0' FIRST remind_type;
- -- modify column `remind_type_id` int(11) FIRST remind_type
- -- drop index u_msg_type on message_type
- alter table message
- -- add push_count int(11) unsigned not null default '0' AFTER `status`;
- add remind_type_id int(11) unsigned not null default '0' AFTER `status`;
|