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
c87017c8
Commit
c87017c8
authored
Feb 25, 2014
by
Marius Cramer
Browse files
Added sql incremental data from master
parent
f4de70ad
Changes
2
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0071.sql
0 → 100644
View file @
c87017c8
ALTER
TABLE
`client`
ADD
`limit_database_quota`
int
(
11
)
NOT
NULL
default
'-1'
AFTER
`limit_database`
;
ALTER
TABLE
`client_template`
ADD
`limit_database_quota`
int
(
11
)
NOT
NULL
default
'-1'
AFTER
`limit_database`
;
ALTER
TABLE
`web_database`
ADD
`database_quota`
int
(
11
)
unsigned
DEFAULT
NULL
AFTER
`database_name_prefix`
,
ADD
`last_quota_notification`
date
NULL
default
NULL
;
install/sql/ispconfig3.sql
View file @
c87017c8
...
...
@@ -214,6 +214,7 @@ CREATE TABLE `client` (
`default_dbserver`
int
(
11
)
NOT
NULL
DEFAULT
'1'
,
`dns_servers`
blob
NOT
NULL
DEFAULT
''
,
`limit_database`
int
(
11
)
NOT
NULL
DEFAULT
'-1'
,
`limit_database_quota`
int
(
11
)
NOT
NULL
default
'-1'
,
`limit_cron`
int
(
11
)
NOT
NULL
DEFAULT
'0'
,
`limit_cron_type`
enum
(
'url'
,
'chrooted'
,
'full'
)
NOT
NULL
DEFAULT
'url'
,
`limit_cron_frequency`
int
(
11
)
NOT
NULL
DEFAULT
'5'
,
...
...
@@ -317,6 +318,7 @@ CREATE TABLE `client_template` (
`limit_dns_slave_zone`
int
(
11
)
NOT
NULL
default
'-1'
,
`limit_dns_record`
int
(
11
)
NOT
NULL
default
'-1'
,
`limit_database`
int
(
11
)
NOT
NULL
default
'-1'
,
`limit_database_quota`
int
(
11
)
NOT
NULL
default
'-1'
,
`limit_cron`
int
(
11
)
NOT
NULL
default
'0'
,
`limit_cron_type`
enum
(
'url'
,
'chrooted'
,
'full'
)
NOT
NULL
default
'url'
,
`limit_cron_frequency`
int
(
11
)
NOT
NULL
default
'5'
,
...
...
@@ -1758,6 +1760,7 @@ CREATE TABLE `web_database` (
`type`
varchar
(
16
)
NOT
NULL
DEFAULT
'y'
,
`database_name`
varchar
(
64
)
DEFAULT
NULL
,
`database_name_prefix`
varchar
(
50
)
NOT
NULL
default
''
,
`database_quota`
int
(
11
)
unsigned
DEFAULT
NULL
,
`database_user_id`
int
(
11
)
unsigned
DEFAULT
NULL
,
`database_ro_user_id`
int
(
11
)
unsigned
DEFAULT
NULL
,
`database_charset`
varchar
(
64
)
DEFAULT
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