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
ISPConfig
ISPConfig 3
Commits
4b6c4d6d
Commit
4b6c4d6d
authored
Feb 12, 2016
by
Marius Burkard
Browse files
- added missing sql columns
parent
eb610b69
Changes
2
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_dev_collection.sql
View file @
4b6c4d6d
...
...
@@ -214,3 +214,5 @@ ALTER TABLE `dns_soa`
ALTER
TABLE
`client`
ADD
COLUMN
`limit_ssl_letsencrypt`
enum
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'n'
AFTER
`limit_ssl`
;
ALTER
TABLE
`client_template`
ADD
COLUMN
`limit_ssl_letsencrypt`
enum
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'n'
AFTER
`limit_ssl`
;
ALTER
TABLE
`client`
ADD
COLUMN
`limit_directive_snippets`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'n'
AFTER
`limit_backup`
;
ALTER
TABLE
`client_template`
ADD
COLUMN
`limit_directive_snippets`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'n'
AFTER
`limit_backup`
;
install/sql/ispconfig3.sql
View file @
4b6c4d6d
...
...
@@ -219,6 +219,7 @@ CREATE TABLE `client` (
`ssh_chroot`
varchar
(
255
)
NOT
NULL
DEFAULT
'no,jailkit,ssh-chroot'
,
`limit_webdav_user`
int
(
11
)
NOT
NULL
DEFAULT
'0'
,
`limit_backup`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'y'
,
`limit_directive_snippets`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'n'
,
`limit_aps`
int
(
11
)
NOT
NULL
DEFAULT
'-1'
,
`default_dnsserver`
int
(
11
)
unsigned
NOT
NULL
DEFAULT
'1'
,
`db_servers`
blob
,
...
...
@@ -344,6 +345,7 @@ CREATE TABLE `client_template` (
`ssh_chroot`
varchar
(
255
)
NOT
NULL
DEFAULT
'no'
,
`limit_webdav_user`
int
(
11
)
NOT
NULL
default
'0'
,
`limit_backup`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'y'
,
`limit_directive_snippets`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'n'
,
`limit_aps`
int
(
11
)
NOT
NULL
DEFAULT
'-1'
,
`limit_dns_zone`
int
(
11
)
NOT
NULL
default
'-1'
,
`limit_dns_slave_zone`
int
(
11
)
NOT
NULL
default
'-1'
,
...
...
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