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
Helmo
ISPConfig 3
Commits
34988378
Commit
34988378
authored
May 16, 2018
by
Florian Schaal
Browse files
increse default retention time for web-logs
parent
d98002ef
Changes
2
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_dev_collection.sql
View file @
34988378
...
...
@@ -2,3 +2,4 @@ ALTER TABLE `web_domain` ADD COLUMN `ssl_letsencrypt_exclude` enum('n','y') NOT
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'
;
install/sql/ispconfig3.sql
View file @
34988378
...
...
@@ -1990,7 +1990,7 @@ CREATE TABLE `web_domain` (
`http_port`
int
(
11
)
unsigned
NOT
NULL
DEFAULT
'80'
,
`https_port`
int
(
11
)
unsigned
NOT
NULL
DEFAULT
'443'
,
`folder_directive_snippets`
text
,
`log_retention`
int
(
11
)
NOT
NULL
DEFAULT
'
3
0'
,
`log_retention`
int
(
11
)
NOT
NULL
DEFAULT
'
1
0'
,
PRIMARY
KEY
(
`domain_id`
),
UNIQUE
KEY
`serverdomain`
(
`server_id`
,
`ip_address`
,
`domain`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
AUTO_INCREMENT
=
1
;
...
...
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