Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ISPConfig 3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BeastyCoding
ISPConfig 3
Commits
3b58a802
Commit
3b58a802
authored
1 year ago
by
Till
Browse files
Options
Downloads
Patches
Plain Diff
Moved sql dev collection do upd_0098.sql
parent
b60fcfff
No related branches found
Branches containing commit
Tags
3.2.10b1
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
install/sql/incremental/upd_0098.sql
+11
-0
11 additions, 0 deletions
install/sql/incremental/upd_0098.sql
install/sql/incremental/upd_dev_collection.sql
+0
-11
0 additions, 11 deletions
install/sql/incremental/upd_dev_collection.sql
with
11 additions
and
11 deletions
install/sql/incremental/upd_0098.sql
0 → 100644
+
11
−
0
View file @
3b58a802
ALTER
TABLE
`mail_user`
CHANGE
`quota`
`quota`
BIGINT
(
20
)
NOT
NULL
DEFAULT
'0'
;
ALTER
TABLE
`server_php`
ADD
`sortprio`
INT
(
20
)
NOT
NULL
DEFAULT
'100'
AFTER
`active`
;
ALTER
TABLE
`mail_user`
ADD
COLUMN
`imap_prefix`
varchar
(
255
)
NULL
default
NULL
AFTER
`backup_copies`
;
-- #6456 comodoca.com needs to become sectigo.com
UPDATE
`dns_ssl_ca`
SET
`ca_issue`
=
'sectigo.com'
WHERE
`ca_issue`
=
'comodo.com'
;
UPDATE
`dns_ssl_ca`
SET
`ca_issue`
=
'sectigo.com'
WHERE
`ca_issue`
=
'comodoca.com'
;
UPDATE
`dns_ssl_ca`
SET
`ca_name`
=
'Sectigo (formerly Comodo CA)'
WHERE
`ca_issue`
=
'sectigo.com'
;
-- not updating the dns_rr table to change all CAA records that have comodo.com / comodoca.com - we should not touch users records imo - TP
-- #6445 Update the mailbox_soft_delete config option to it's new structure.
-- UPDATE server SET config=REGEXP_REPLACE(config, 'mailbox_soft_delete=n', 'mailbox_soft_delete=0') WHERE config LIKE '%mailbox_soft_delete=n%'
-- UPDATE server SET config=REGEXP_REPLACE(config, 'mailbox_soft_delete=y', 'mailbox_soft_delete=7') WHERE config LIKE '%mailbox_soft_delete=y%'
\ No newline at end of file
This diff is collapsed.
Click to expand it.
install/sql/incremental/upd_dev_collection.sql
+
0
−
11
View file @
3b58a802
ALTER
TABLE
`mail_user`
CHANGE
`quota`
`quota`
BIGINT
(
20
)
NOT
NULL
DEFAULT
'0'
;
ALTER
TABLE
`server_php`
ADD
`sortprio`
INT
(
20
)
NOT
NULL
DEFAULT
'100'
AFTER
`active`
;
ALTER
TABLE
`mail_user`
ADD
COLUMN
`imap_prefix`
varchar
(
255
)
NULL
default
NULL
AFTER
`backup_copies`
;
-- #6456 comodoca.com needs to become sectigo.com
UPDATE
`dns_ssl_ca`
SET
`ca_issue`
=
'sectigo.com'
WHERE
`ca_issue`
=
'comodo.com'
;
UPDATE
`dns_ssl_ca`
SET
`ca_issue`
=
'sectigo.com'
WHERE
`ca_issue`
=
'comodoca.com'
;
UPDATE
`dns_ssl_ca`
SET
`ca_name`
=
'Sectigo (formerly Comodo CA)'
WHERE
`ca_issue`
=
'sectigo.com'
;
-- not updating the dns_rr table to change all CAA records that have comodo.com / comodoca.com - we should not touch users records imo - TP
-- #6445 Update the mailbox_soft_delete config option to it's new structure.
-- UPDATE server SET config=REGEXP_REPLACE(config, 'mailbox_soft_delete=n', 'mailbox_soft_delete=0') WHERE config LIKE '%mailbox_soft_delete=n%'
-- UPDATE server SET config=REGEXP_REPLACE(config, 'mailbox_soft_delete=y', 'mailbox_soft_delete=7') WHERE config LIKE '%mailbox_soft_delete=y%'
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment