message.sql 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. drop table if exists `notice`.`message`;
  2. create table `notice`.`message`(
  3. `id` int(11) not null auto_increment default '0',
  4. -- `sys_name` varchar(255) not null,
  5. -- `pasture_id` int(11) not null,
  6. -- `service_id` int(11) not null,
  7. `msg_type_id` int(11) not null default '0',
  8. `remind_type` int(11) not null default 0 comment '发送方式',
  9. `date_type` int(11) not null default 0 comment '循环类型',
  10. `cycle_type` int(11) not null default 0 comment '发送机制',
  11. `push_date` int(11) not null default 0 comment '推送日期',
  12. `push_time` varchar(64) not null default '' comment '推送时间',
  13. `delay_time` int(11) not null default 0 comment '延迟时间',
  14. `interval_time` int(11) not null default 0 comment '提醒间隔时间',
  15. `push_limit` int(11) not null default 0 comment '推送限制次数',
  16. `template_id` varchar(64) not null default '' comment '模板id',
  17. `msg_type_id` int(11) not null default 0,
  18. `remind_type` int(11) not null default 0,
  19. `msg_content` text not null ,
  20. `target` text not null default '',
  21. `push_count` int(11) not null default 0,
  22. -- `push_limit` int(11) not null default 0,
  23. `status` int(11) not null default 0,
  24. `created_at` DATETIME not null default CURRENT_TIMESTAMP,
  25. `updated_at` DATETIME not null ON UPDATE CURRENT_TIMESTAMP ,
  26. primary key(`id`)
  27. )ENGINE=InnoDB DEFAULT CHARSET=utf8 comment '消息';
  28. alter table message
  29. add `body_data` text not null default '';
  30. -- drop column if exists `body_data`;