alter.sql 383 B

12345678
  1. -- alter table msg_type
  2. -- modify column `remind_type_id` int(11) unsigned not null default '0' FIRST remind_type;
  3. -- modify column `remind_type_id` int(11) FIRST remind_type
  4. -- drop index u_msg_type on message_type
  5. alter table message
  6. -- add push_count int(11) unsigned not null default '0' AFTER `status`;
  7. add remind_type_id int(11) unsigned not null default '0' AFTER `status`;