修改mysql脚本

This commit is contained in:
648540858
2022-01-21 16:05:02 +08:00
parent 3f5e885e82
commit b6702f7c05
5 changed files with 11 additions and 28 deletions

View File

@@ -259,8 +259,8 @@ insert into user (username, password, roleId, createTime, updateTime) values ('a
create table role (
id int auto_increment
primary key,
name TEXT NOT NULL,
authority TEXT NOT NULL,
name varchar(50) NOT NULL,
authority varchar(50) NOT NULL,
createTime varchar(50) not null,
updateTime varchar(50) not null
);