Skip to content

Commit

Permalink
Merge pull request #142 from adminoryuan/dev
Browse files Browse the repository at this point in the history
update mysql.sql  and mysql_data.sql
  • Loading branch information
liukuo362573 committed Oct 22, 2022
2 parents 2794472 + edf8ca0 commit 4bd3ff3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions Document/DatabaseScript/mysql.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/* 执行脚本前,请先选择数据库,脚本会先删除表,然后再创建表,请谨慎执行!!! */;
/* use YiShaAdmin; */;
/* 执行脚本前,请先选择数据库,脚本会先删除表,然后再创建表,请谨慎执行!!! */

/* use YiShaAdmin; */

DROP TABLE IF EXISTS `SysArea`;
CREATE TABLE IF NOT EXISTS `SysArea` (
Expand Down Expand Up @@ -284,4 +285,4 @@ CREATE TABLE IF NOT EXISTS `SysLogOperate` (
`ExecuteResult` text NOT NULL COMMENT '请求结果',
`ExecuteTime` int(11) NOT NULL COMMENT '执行时间',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB COMMENT '操作日志表';
) ENGINE=InnoDB COMMENT '操作日志表';
6 changes: 3 additions & 3 deletions Document/DatabaseScript/mysql_data.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* 初始化数据 */;
/* use YiShaAdmin; */;
/* 初始化数据 */
/* use YiShaAdmin; */

INSERT INTO `SysArea` (`Id`, `BaseIsDelete`, `BaseCreateTime`, `BaseModifyTime`, `BaseCreatorId`, `BaseModifierId`, `BaseVersion`, `AreaCode`, `ParentAreaCode`, `AreaName`, `ZipCode`, `AreaLevel`) VALUES
(16508640061120570, 0, '2018-12-24 16:33:59', '2018-12-24 16:33:59', 0, 0, 0, '110000', '0', '北京', '', 1),
Expand Down Expand Up @@ -4048,4 +4048,4 @@ INSERT INTO `SysUserBelong` (`Id`, `BaseCreateTime`, `BaseCreatorId`, `UserId`,
(103181410411483137, '2019-10-12 17:26:05', 16508640061130151, 16508640061130153, 16508640061130141, 1),
(103181410415677440, '2019-10-12 17:26:05', 16508640061130151, 16508640061130153, 16508640061130142, 1),
(103193128348946432, '2019-10-12 18:12:39', 16508640061130151, 16508640061130152, 16508640061130143, 1),
(103193280182751232, '2019-10-12 18:13:15', 16508640061130151, 16508640061130150, 16508640061130147, 2);
(103193280182751232, '2019-10-12 18:13:15', 16508640061130151, 16508640061130150, 16508640061130147, 2);

0 comments on commit 4bd3ff3

Please sign in to comment.