Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
ISPConfig
ISPConfig 3
Commits
78d45ae9
Commit
78d45ae9
authored
Nov 17, 2020
by
Marius Burkard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- add fixes to sql
parent
12d38e85
Pipeline
#6469
passed with stage
in 7 minutes and 27 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
install/sql/incremental/upd_dev_collection.sql
install/sql/incremental/upd_dev_collection.sql
+1
-1
install/sql/ispconfig3.sql
install/sql/ispconfig3.sql
+1
-1
No files found.
install/sql/incremental/upd_dev_collection.sql
View file @
78d45ae9
-- we need those to fix some installations failing in 0089 and 0090
ALTER
TABLE
web_domain
ROW_FORMAT
=
DYNAMIC
;
ALTER
TABLE
`
web_domain
`
ROW_FORMAT
=
DYNAMIC
;
ALTER
IGNORE
TABLE
`web_domain`
ADD
COLUMN
`proxy_protocol`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'n'
AFTER
`log_retention`
;
ALTER
IGNORE
TABLE
`web_domain`
ADD
`backup_format_web`
VARCHAR
(
255
)
NOT
NULL
default
'default'
AFTER
`backup_copies`
;
ALTER
IGNORE
TABLE
`web_domain`
ADD
`backup_format_db`
VARCHAR
(
255
)
NOT
NULL
default
'gzip'
AFTER
`backup_format_web`
;
...
...
install/sql/ispconfig3.sql
View file @
78d45ae9
...
...
@@ -2091,7 +2091,7 @@ CREATE TABLE `web_domain` (
`last_jailkit_hash`
varchar
(
255
)
DEFAULT
NULL
,
PRIMARY
KEY
(
`domain_id`
),
UNIQUE
KEY
`serverdomain`
(
`server_id`
,
`ip_address`
,
`domain`
)
)
DEFAULT
CHARSET
=
utf8
AUTO_INCREMENT
=
1
;
)
ENGINE
=
InnoDB
ROW_FORMAT
=
DYNAMIC
DEFAULT
CHARSET
=
utf8
AUTO_INCREMENT
=
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