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
Zvonimir
ISPConfig 3
Commits
ac7ef785
Commit
ac7ef785
authored
Mar 28, 2014
by
Till Brehm
Browse files
Fixed default value for backup_interval of mail_users.
parent
8edc7f19
Changes
2
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0062.sql
View file @
ac7ef785
...
...
@@ -10,5 +10,5 @@ CREATE TABLE `mail_backup` (
PRIMARY
KEY
(
`backup_id`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
AUTO_INCREMENT
=
1
;
ALTER
TABLE
`mail_user`
ADD
`backup_interval`
VARCHAR
(
255
)
NOT
NULL
;
ALTER
TABLE
`mail_user`
ADD
`backup_interval`
VARCHAR
(
255
)
NOT
NULL
DEFAULT
'none'
;
ALTER
TABLE
`mail_user`
ADD
`backup_copies`
INT
NOT
NULL
DEFAULT
'1'
;
install/sql/ispconfig3.sql
View file @
ac7ef785
...
...
@@ -918,7 +918,7 @@ CREATE TABLE `mail_user` (
`disablelmtp`
enum
(
'n'
,
'y'
)
NOT
NULL
default
'n'
,
`disabledoveadm`
enum
(
'n'
,
'y'
)
NOT
NULL
default
'n'
,
`last_quota_notification`
date
NULL
default
NULL
,
`backup_interval`
VARCHAR
(
255
)
NOT
NULL
,
`backup_interval`
VARCHAR
(
255
)
NOT
NULL
default
'none'
,
`backup_copies`
INT
NOT
NULL
DEFAULT
'1'
,
PRIMARY
KEY
(
`mailuser_id`
),
KEY
`server_id`
(
`server_id`
,
`email`
),
...
...
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