Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ISPConfig 3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Manoa Ratefiarison
ISPConfig 3
Commits
2c273e99
Commit
2c273e99
authored
13 years ago
by
tbrehm
Browse files
Options
Downloads
Patches
Plain Diff
Added "IF NOT EXISTS" to create table statements.
parent
a59c2139
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
install/sql/incremental/upd_0019.sql
+2
-2
2 additions, 2 deletions
install/sql/incremental/upd_0019.sql
with
2 additions
and
2 deletions
install/sql/incremental/upd_0019.sql
+
2
−
2
View file @
2c273e99
CREATE
TABLE
`help_faq`
(
CREATE
TABLE
IF
NOT
EXISTS
`help_faq`
(
`hf_id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`hf_id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`hf_section`
int
(
11
)
DEFAULT
NULL
,
`hf_section`
int
(
11
)
DEFAULT
NULL
,
`hf_order`
int
(
11
)
DEFAULT
'0'
,
`hf_order`
int
(
11
)
DEFAULT
'0'
,
...
@@ -12,7 +12,7 @@ CREATE TABLE `help_faq` (
...
@@ -12,7 +12,7 @@ CREATE TABLE `help_faq` (
PRIMARY
KEY
(
`hf_id`
)
PRIMARY
KEY
(
`hf_id`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
AUTO_INCREMENT
=
1
;
)
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_id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`hfs_name`
varchar
(
255
)
DEFAULT
NULL
,
`hfs_name`
varchar
(
255
)
DEFAULT
NULL
,
`hfs_order`
int
(
11
)
DEFAULT
'0'
,
`hfs_order`
int
(
11
)
DEFAULT
'0'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment