leaf_alloc.sql 358 B

12345678910
  1. DROP TABLE IF EXISTS `leaf_alloc`;
  2. CREATE TABLE `leaf_alloc` (
  3. `biz_tag` varchar(128) NOT NULL DEFAULT '',
  4. `max_id` bigint(20) NOT NULL DEFAULT '1',
  5. `step` int(11) NOT NULL,
  6. `description` varchar(256) DEFAULT NULL,
  7. `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  8. PRIMARY KEY (`biz_tag`)
  9. ) ENGINE=InnoDB;