Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mpidb_common
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Achim Bohnet
mpidb_common
Commits
1aa52b7b
Commit
1aa52b7b
authored
Feb 14, 2016
by
Gerd Schachtschneider
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change updateDB
parent
b1e21b28
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
template/install/updateDB_0100.sql
template/install/updateDB_0100.sql
+4
-4
No files found.
template/install/updateDB_0
5
00.sql
→
template/install/updateDB_0
1
00.sql
View file @
1aa52b7b
...
...
@@ -13,23 +13,23 @@ proc_label: BEGIN
-- initial value
IF
(
SELECT
MAX
(
version
)
FROM
dataface__version
)
=
'0'
THEN
TRUNCATE
dataface__version
;
INSERT
INTO
dataface__version
(
version
)
VALUES
(
'0
5
00'
);
INSERT
INTO
dataface__version
(
version
)
VALUES
(
'0
1
00'
);
END
IF
;
-- mindest version vorhanden
IF
(
SELECT
MAX
(
version
)
FROM
dataface__version
)
<
'0
5
00'
THEN
IF
(
SELECT
MAX
(
version
)
FROM
dataface__version
)
<
'0
1
00'
THEN
LEAVE
proc_label
;
END
IF
;
IF
(
SELECT
MAX
(
version
)
FROM
dataface__version
)
<
'0
5
00'
THEN
IF
(
SELECT
MAX
(
version
)
FROM
dataface__version
)
<
'0
1
00'
THEN
-- CHANGES V0.5.00 :
-- ****************
-- fs::rsync - mech_inv initial
TRUNCATE
dataface__version
;
INSERT
INTO
dataface__version
(
version
)
VALUES
(
'0
5
00'
);
INSERT
INTO
dataface__version
(
version
)
VALUES
(
'0
1
00'
);
END
IF
;
...
...
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