Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
sts网站
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liyang
sts网站
Commits
b7a36bfe
Commit
b7a36bfe
authored
Feb 10, 2021
by
RuoYi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改ip字段长度防止ipv6地址长度不够
parent
3a51c538
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ry_20210210.sql
sql/ry_20210210.sql
+3
-3
No files found.
sql/ry_20210
108
.sql
→
sql/ry_20210
210
.sql
View file @
b7a36bfe
...
@@ -52,7 +52,7 @@ create table sys_user (
...
@@ -52,7 +52,7 @@ create table sys_user (
password
varchar
(
100
)
default
''
comment
'密码'
,
password
varchar
(
100
)
default
''
comment
'密码'
,
status
char
(
1
)
default
'0'
comment
'帐号状态(0正常 1停用)'
,
status
char
(
1
)
default
'0'
comment
'帐号状态(0正常 1停用)'
,
del_flag
char
(
1
)
default
'0'
comment
'删除标志(0代表存在 2代表删除)'
,
del_flag
char
(
1
)
default
'0'
comment
'删除标志(0代表存在 2代表删除)'
,
login_ip
varchar
(
50
)
default
''
comment
'最后登录IP'
,
login_ip
varchar
(
128
)
default
''
comment
'最后登录IP'
,
login_date
datetime
comment
'最后登录时间'
,
login_date
datetime
comment
'最后登录时间'
,
create_by
varchar
(
64
)
default
''
comment
'创建者'
,
create_by
varchar
(
64
)
default
''
comment
'创建者'
,
create_time
datetime
comment
'创建时间'
,
create_time
datetime
comment
'创建时间'
,
...
@@ -421,7 +421,7 @@ create table sys_oper_log (
...
@@ -421,7 +421,7 @@ create table sys_oper_log (
oper_name
varchar
(
50
)
default
''
comment
'操作人员'
,
oper_name
varchar
(
50
)
default
''
comment
'操作人员'
,
dept_name
varchar
(
50
)
default
''
comment
'部门名称'
,
dept_name
varchar
(
50
)
default
''
comment
'部门名称'
,
oper_url
varchar
(
255
)
default
''
comment
'请求URL'
,
oper_url
varchar
(
255
)
default
''
comment
'请求URL'
,
oper_ip
varchar
(
50
)
default
''
comment
'主机地址'
,
oper_ip
varchar
(
128
)
default
''
comment
'主机地址'
,
oper_location
varchar
(
255
)
default
''
comment
'操作地点'
,
oper_location
varchar
(
255
)
default
''
comment
'操作地点'
,
oper_param
varchar
(
2000
)
default
''
comment
'请求参数'
,
oper_param
varchar
(
2000
)
default
''
comment
'请求参数'
,
json_result
varchar
(
2000
)
default
''
comment
'返回参数'
,
json_result
varchar
(
2000
)
default
''
comment
'返回参数'
,
...
@@ -546,7 +546,7 @@ drop table if exists sys_logininfor;
...
@@ -546,7 +546,7 @@ drop table if exists sys_logininfor;
create
table
sys_logininfor
(
create
table
sys_logininfor
(
info_id
bigint
(
20
)
not
null
auto_increment
comment
'访问ID'
,
info_id
bigint
(
20
)
not
null
auto_increment
comment
'访问ID'
,
user_name
varchar
(
50
)
default
''
comment
'用户账号'
,
user_name
varchar
(
50
)
default
''
comment
'用户账号'
,
ipaddr
varchar
(
50
)
default
''
comment
'登录IP地址'
,
ipaddr
varchar
(
128
)
default
''
comment
'登录IP地址'
,
login_location
varchar
(
255
)
default
''
comment
'登录地点'
,
login_location
varchar
(
255
)
default
''
comment
'登录地点'
,
browser
varchar
(
50
)
default
''
comment
'浏览器类型'
,
browser
varchar
(
50
)
default
''
comment
'浏览器类型'
,
os
varchar
(
50
)
default
''
comment
'操作系统'
,
os
varchar
(
50
)
default
''
comment
'操作系统'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment