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
Zvonimir
ISPConfig 3
Commits
79bd40ac
Commit
79bd40ac
authored
Apr 09, 2014
by
Marius Cramer
Browse files
Added another incremental from merge request
parent
d2c5ed74
Changes
2
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0073.sql
View file @
79bd40ac
ALTER
TABLE
`client_template`
ADD
`limit_backup`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'y'
AFTER
`limit_webdav_user`
;
ALTER
TABLE
`client`
ADD
`limit_backup`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'y'
AFTER
`limit_webdav_user`
;
ALTER
TABLE
`web_domain`
CHANGE
`php_fpm_use_socket`
`php_fpm_use_socket`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'y'
;
ALTER
TABLE
`mail_domain`
ADD
`dkim_selector`
VARCHAR
(
63
)
NOT
NULL
DEFAULT
'default'
AFTER
`dkim`
;
install/sql/ispconfig3.sql
View file @
79bd40ac
...
...
@@ -742,6 +742,7 @@ CREATE TABLE `mail_domain` (
`server_id`
int
(
11
)
unsigned
NOT
NULL
default
'0'
,
`domain`
varchar
(
255
)
NOT
NULL
default
''
,
`dkim`
ENUM
(
'n'
,
'y'
)
NOT
NULL
default
'n'
,
`dkim_selector`
varchar
(
63
)
NOT
NULL
DEFAULT
'default'
,
`dkim_private`
mediumtext
NULL
,
`dkim_public`
mediumtext
NULL
,
`active`
enum
(
'n'
,
'y'
)
NOT
NULL
,
...
...
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