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
Philipp
ISPConfig 3
Commits
c8f8fee6
Commit
c8f8fee6
authored
Dec 06, 2017
by
Marius Burkard
Browse files
- manually ported MR !679, fixes #4856
parent
437fa5b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0085.sql
View file @
c8f8fee6
...
...
@@ -18,4 +18,4 @@ ALTER TABLE `dns_rr` CHANGE `data` `data` TEXT NOT NULL;
ALTER
TABLE
`web_database`
CHANGE
`database_quota`
`database_quota`
INT
(
11
)
NULL
DEFAULT
NULL
;
ALTER
TABLE
`web_domain`
ADD
`log_retention`
INT
NOT
NULL
DEFAULT
'30'
;
ALTER
TABLE
spamfilter_policy
CHANGE
spam_tag_level
spam_tag_level
DECIMAL
(
5
,
2
)
NULL
DEFAULT
NULL
,
CHANGE
spam_tag2_level
spam_tag2_level
DECIMAL
(
5
,
2
)
NULL
DEFAULT
NULL
,
CHANGE
spam_kill_level
spam_kill_level
DECIMAL
(
5
,
2
)
NULL
DEFAULT
NULL
,
CHANGE
spam_dsn_cutoff_level
spam_dsn_cutoff_level
DECIMAL
(
5
,
2
)
NULL
DEFAULT
NULL
,
CHANGE
spam_quarantine_cutoff_level
spam_quarantine_cutoff_level
DECIMAL
(
5
,
2
)
NULL
DEFAULT
NULL
;
UPDATE
`web_database`
as
d
LEFT
JOIN
`web_domain`
as
w
ON
(
w
.
domain_id
=
d
.
parent_domain_id
)
SET
d
.
parent_domain_id
=
0
WHERE
w
.
domain_id
IS
NULL
AND
d
.
parent_domain_id
!=
0
;
\ No newline at end of file
UPDATE
`web_database`
as
d
LEFT
JOIN
`web_domain`
as
w
ON
(
w
.
domain_id
=
d
.
parent_domain_id
)
SET
d
.
parent_domain_id
=
0
WHERE
w
.
domain_id
IS
NULL
AND
d
.
parent_domain_id
!=
0
AND
(
SELECT
EXISTS
(
SELECT
*
FROM
web_domain
));
\ No newline at end of file
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