Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
kotishe
ISPConfig 3
Commits
d9459171
Commit
d9459171
authored
Mar 25, 2014
by
Till Brehm
Browse files
Merge branch 'stable-3.0.5' of git.ispconfig.org:ispconfig/ispconfig3 into stable-3.0.5
parents
f9f20be2
a6aee3e0
Changes
3
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0026.sql
View file @
d9459171
ALTER
TABLE
`shell_user`
CHANGE
`ssh_rsa`
`ssh_rsa`
TEXT
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
NOT
NULL
DEFAULT
''
;
\ No newline at end of file
ALTER
TABLE
`shell_user`
CHANGE
`ssh_rsa`
`ssh_rsa`
TEXT
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
NOT
NULL
;
\ No newline at end of file
install/sql/incremental/upd_0042.sql
View file @
d9459171
-- increase column size
ALTER
TABLE
`client`
CHANGE
`template_additional`
`template_additional`
TEXT
NOT
NULL
DEFAULT
''
;
ALTER
TABLE
`client`
CHANGE
`template_additional`
`template_additional`
TEXT
NOT
NULL
;
install/sql/incremental/upd_0067.sql
View file @
d9459171
ALTER
TABLE
`client`
ADD
`web_servers`
blob
NOT
NULL
DEFAULT
''
AFTER
`default_webserver`
,
ADD
`mail_servers`
blob
NOT
NULL
DEFAULT
''
AFTER
`default_mailserver`
,
ADD
`db_servers`
blob
NOT
NULL
DEFAULT
''
AFTER
`default_dbserver`
,
ADD
`dns_servers`
blob
NOT
NULL
DEFAULT
''
AFTER
`default_dnsserver`
;
ADD
`web_servers`
blob
NOT
NULL
AFTER
`default_webserver`
,
ADD
`mail_servers`
blob
NOT
NULL
AFTER
`default_mailserver`
,
ADD
`db_servers`
blob
NOT
NULL
AFTER
`default_dbserver`
,
ADD
`dns_servers`
blob
NOT
NULL
AFTER
`default_dnsserver`
;
UPDATE
`client`
SET
`web_servers`
=
`default_webserver`
,
`mail_servers`
=
`default_mailserver`
,
`db_servers`
=
`default_dbserver`
,
`dns_servers`
=
`default_dnsserver`
WHERE
1
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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