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
Guilherme Filippo
ISPConfig 3
Commits
2c273e99
Commit
2c273e99
authored
Sep 20, 2011
by
tbrehm
Browse files
Added "IF NOT EXISTS" to create table statements.
parent
a59c2139
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0019.sql
View file @
2c273e99
CREATE
TABLE
`help_faq`
(
CREATE
TABLE
IF
NOT
EXISTS
`help_faq`
(
`hf_id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`hf_section`
int
(
11
)
DEFAULT
NULL
,
`hf_order`
int
(
11
)
DEFAULT
'0'
,
...
...
@@ -12,7 +12,7 @@ CREATE TABLE `help_faq` (
PRIMARY
KEY
(
`hf_id`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
AUTO_INCREMENT
=
1
;
CREATE
TABLE
`help_faq_sections`
(
CREATE
TABLE
IF
NOT
EXISTS
`help_faq_sections`
(
`hfs_id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`hfs_name`
varchar
(
255
)
DEFAULT
NULL
,
`hfs_order`
int
(
11
)
DEFAULT
'0'
,
...
...
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