Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
b12e10a1
Commit
b12e10a1
authored
Nov 08, 2022
by
Till
Browse files
Created upd_0097.sql file
parent
6f696a88
Pipeline
#12669
passed with stage
in 10 seconds
Changes
2
Pipelines
2
Show whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0097.sql
0 → 100644
View file @
b12e10a1
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`
;
install/sql/incremental/upd_dev_collection.sql
View file @
b12e10a1
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