projects
/
platform
/
core
/
appfw
/
pkgmgr-tool.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9aaf14e
)
Fix db migration script
93/201293/1
author
Junghyun Yeon
<jungh.yeon@samsung.com>
Tue, 12 Mar 2019 06:58:25 +0000
(15:58 +0900)
committer
Junghyun Yeon
<jungh.yeon@samsung.com>
Tue, 12 Mar 2019 06:58:25 +0000
(15:58 +0900)
Change-Id: I44b9153494d58bd7f2fe59c7b9fdafc51463373b
Signed-off-by: Junghyun Yeon <jungh.yeon@samsung.com>
data/updates/upgrade_to_30004.sh.in
patch
|
blob
|
history
diff --git
a/data/updates/upgrade_to_30004.sh.in
b/data/updates/upgrade_to_30004.sh.in
index ec3ea57076410b8f1942ff39b43a73095e621775..d1214e25deeee6688d135ac04b1551a7af04cd81 100644
(file)
--- a/
data/updates/upgrade_to_30004.sh.in
+++ b/
data/updates/upgrade_to_30004.sh.in
@@
-21,8
+21,8
@@
function migrate_parser_db() {
echo -e "CREATE TABLE IF NOT EXISTS package_plugin_info (\n" \
" pkgid TEXT NOT NULL,\n" \
" appid TEXT,\n" \
- " plugin_type TEXT NOT NULL,\n"
,
- " plugin_name TEXT NOT NULL)" | sqlite3 $dbpath
+ " plugin_type TEXT NOT NULL,\n"
\
+ " plugin_name TEXT NOT NULL)
;
" | sqlite3 $dbpath
echo "PRAGMA user_version=30004;" | sqlite3 $dbpath
}