Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ISPConfig 3
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
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
Mattia Rizzolo
ISPConfig 3
Commits
33019cd9
Commit
33019cd9
authored
3 years ago
by
Marius Burkard
Browse files
Options
Downloads
Patches
Plain Diff
- added sql update file
parent
4191a7d7
No related branches found
Branches containing commit
Tags
3.2.3
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
install/sql/incremental/upd_0093.sql
+25
-0
25 additions, 0 deletions
install/sql/incremental/upd_0093.sql
with
25 additions
and
0 deletions
install/sql/incremental/upd_0093.sql
0 → 100644
+
25
−
0
View file @
33019cd9
ALTER
TABLE
`remote_user`
MODIFY
`remote_password`
VARCHAR
(
200
)
NOT
NULL
DEFAULT
''
;
ALTER
TABLE
`client`
ADD
COLUMN
`limit_mail_wblist`
INT
(
11
)
NOT
NULL
DEFAULT
'0'
AFTER
`limit_mailrouting`
;
ALTER
TABLE
`client_template`
ADD
COLUMN
`limit_mail_wblist`
INT
(
11
)
NOT
NULL
DEFAULT
'0'
AFTER
`limit_mailrouting`
;
ALTER
TABLE
mail_access
DROP
CONSTRAINT
`server_id`
;
SET
SESSION
old_alter_table
=
1
;
ALTER
IGNORE
TABLE
mail_access
ADD
UNIQUE
KEY
`unique_source`
(
`server_id`
,
`source`
,
`type`
);
SET
SESSION
old_alter_table
=
0
;
ALTER
TABLE
mail_domain
ADD
COLUMN
`relay_host`
varchar
(
255
)
NOT
NULL
default
''
AFTER
`dkim_public`
,
ADD
COLUMN
`relay_user`
varchar
(
255
)
NOT
NULL
default
''
AFTER
`relay_host`
,
ADD
COLUMN
`relay_pass`
varchar
(
255
)
NOT
NULL
default
''
AFTER
`relay_user`
;
-- Purge apps & addons installer (#5795)
DROP
TABLE
'software_package'
;
DROP
TABLE
'software_repo'
;
DROP
TABLE
'software_update'
;
DROP
TABLE
'software_update_inst'
;
-- Brexit
UPDATE
`country`
SET
`eu`
=
'n'
WHERE
`iso`
=
'GB'
;
-- Add limit for per domain relaying
ALTER
TABLE
`client`
ADD
`limit_relayhost`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'n'
AFTER
`limit_spamfilter_policy`
;
ALTER
TABLE
`client_template`
ADD
`limit_relayhost`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'n'
AFTER
`limit_spamfilter_policy`
;
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