auto_announcements.sql 336 B

1234567891011
  1. -- ----------------------------
  2. -- Table structure for auto_announcements
  3. -- ----------------------------
  4. CREATE TABLE IF NOT EXISTS `auto_announcements` (
  5. `id` INT(11) NOT NULL,
  6. `initial` BIGINT(20) NOT NULL,
  7. `delay` BIGINT(20) NOT NULL,
  8. `cycle` INT(11) NOT NULL,
  9. `memo` TEXT DEFAULT NULL,
  10. PRIMARY KEY (`id`)
  11. );