Commit 91c544f2 authored by xiaochun.liu's avatar xiaochun.liu
Browse files

sql

parent c6878563
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -623,6 +623,7 @@ CREATE TABLE t_ds_user (
  create_time timestamp DEFAULT NULL ,
  update_time timestamp DEFAULT NULL ,
  queue varchar(64) DEFAULT NULL ,
  state int DEFAULT 1 
  PRIMARY KEY (id)
);

+1 −0
Original line number Diff line number Diff line
@@ -775,6 +775,7 @@ CREATE TABLE `t_ds_user` (
  `create_time` datetime DEFAULT NULL COMMENT 'create time',
  `update_time` datetime DEFAULT NULL COMMENT 'update time',
  `queue` varchar(64) DEFAULT NULL COMMENT 'queue',
  `state` int(1) DEFAULT 1 COMMENT 'state 0:disable 1:enable',
  PRIMARY KEY (`id`),
  UNIQUE KEY `user_name_unique` (`user_name`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;