diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-03-06 19:21:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-03-06 19:21:05 +0300 |
commit | f21d22a3add88214bc91e3f47c068b2e9efc92b1 (patch) | |
tree | 8562db6b724e400917bc548b5dbc2baf9de87ce3 | |
parent | 5367a5d2a9e217875d2af945f0773bc80f6ae5ed (diff) | |
download | evol-tools-f21d22a3add88214bc91e3f47c068b2e9efc92b1.tar.gz evol-tools-f21d22a3add88214bc91e3f47c068b2e9efc92b1.tar.bz2 evol-tools-f21d22a3add88214bc91e3f47c068b2e9efc92b1.tar.xz evol-tools-f21d22a3add88214bc91e3f47c068b2e9efc92b1.zip |
Update sql db version to 7.s20170404
-rwxr-xr-x | localserver/initdb.sh | 2 | ||||
-rwxr-xr-x | localserver/updatedb.sh | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/localserver/initdb.sh b/localserver/initdb.sh index d7625e3..9167e91 100755 --- a/localserver/initdb.sh +++ b/localserver/initdb.sh @@ -22,5 +22,5 @@ $CMD <logs.sql if [[ -z "${VER}" ]]; then mkdir ${DIR}/versions - echo "6" >${DIR}/versions/sqlver + echo "7" >${DIR}/versions/sqlver fi diff --git a/localserver/updatedb.sh b/localserver/updatedb.sh index e96e5c3..66f8754 100755 --- a/localserver/updatedb.sh +++ b/localserver/updatedb.sh @@ -37,6 +37,10 @@ if [ "${VER}" -lt "6" ]; then run "2016-10-03--20-27.sql" fi -if [ "${VER}" -lt "6" ]; then - echo "6" >versions/sqlver +if [ "${VER}" -lt "7" ]; then + run "2016-10-26--10-29.sql" +fi + +if [ "${VER}" -lt "7" ]; then + echo "7" >versions/sqlver fi |