Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
3e91558f
Unverified
Commit
3e91558f
authored
Mar 27, 2022
by
Helmo
Browse files
Fix AFTER
parent
25caa5b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_dev_collection.sql
View file @
3e91558f
ALTER
TABLE
`sys_user`
ADD
`otp_type`
SET
(
'none'
,
'email'
)
NOT
NULL
DEFAULT
'none'
AFTER
`
otp_enabled
`
,
ADD
`otp_data`
VARCHAR
(
255
)
NULL
AFTER
`otp_type`
,
ADD
`otp_recovery`
VARCHAR
(
64
)
NULL
AFTER
`otp_data`
,
ADD
`otp_attempts`
TINYINT
NOT
NULL
DEFAULT
'0'
AFTER
`otp_recovery`
;
ALTER
TABLE
`sys_user`
ADD
`otp_type`
SET
(
'none'
,
'email'
)
NOT
NULL
DEFAULT
'none'
AFTER
`
lost_password_reqtime
`
,
ADD
`otp_data`
VARCHAR
(
255
)
NULL
AFTER
`otp_type`
,
ADD
`otp_recovery`
VARCHAR
(
64
)
NULL
AFTER
`otp_data`
,
ADD
`otp_attempts`
TINYINT
NOT
NULL
DEFAULT
'0'
AFTER
`otp_recovery`
;
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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