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
Helmo
ISPConfig 3
Commits
f3d9f1c6
Commit
f3d9f1c6
authored
May 23, 2018
by
Till Brehm
Browse files
Moved SQL queries to upd_0086.sql
parent
2774cc7f
Changes
2
Show whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0086.sql
0 → 100644
View file @
f3d9f1c6
ALTER
TABLE
`web_domain`
ADD
COLUMN
`ssl_letsencrypt_exclude`
enum
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'n'
AFTER
`ssl_letsencrypt`
;
ALTER
TABLE
`remote_user`
ADD
`remote_access`
ENUM
(
'y'
,
'n'
)
NOT
NULL
DEFAULT
'y'
AFTER
`remote_password`
;
ALTER
TABLE
`remote_user`
ADD
`remote_ips`
TEXT
AFTER
`remote_access`
;
ALTER
TABLE
`server_php`
ADD
`active`
enum
(
'y'
,
'n'
)
NOT
NULL
DEFAULT
'y'
AFTER
`php_fpm_pool_dir`
;
ALTER
TABLE
`web_domain`
CHANGE
`log_retention`
`log_retention`
INT
(
11
)
NOT
NULL
DEFAULT
'10'
;
\ No newline at end of file
install/sql/incremental/upd_dev_collection.sql
View file @
f3d9f1c6
ALTER
TABLE
`web_domain`
ADD
COLUMN
`ssl_letsencrypt_exclude`
enum
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'n'
AFTER
`ssl_letsencrypt`
;
ALTER
TABLE
`remote_user`
ADD
`remote_access`
ENUM
(
'y'
,
'n'
)
NOT
NULL
DEFAULT
'y'
AFTER
`remote_password`
;
ALTER
TABLE
`remote_user`
ADD
`remote_ips`
TEXT
AFTER
`remote_access`
;
ALTER
TABLE
`server_php`
ADD
`active`
enum
(
'y'
,
'n'
)
NOT
NULL
DEFAULT
'y'
AFTER
`php_fpm_pool_dir`
;
ALTER
TABLE
`web_domain`
CHANGE
`log_retention`
`log_retention`
INT
(
11
)
NOT
NULL
DEFAULT
'10'
;
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