add appsvc.sql file 06/49706/1 accepted/tizen/mobile/20151019.091659 accepted/tizen/tv/20151019.091711 accepted/tizen/wearable/20151019.091727 submit/tizen/20151019.090536 tizen_3.0.m2.a1_mobile_release tizen_3.0.m2.a1_tv_release
authorJiwoong Im <jiwoong.im@samsung.com>
Mon, 19 Oct 2015 09:04:18 +0000 (18:04 +0900)
committerJiwoong Im <jiwoong.im@samsung.com>
Mon, 19 Oct 2015 09:04:18 +0000 (18:04 +0900)
Change-Id: I7fb7490e6dcb4a6dfbd41a5c83c46b9ac4ef8e95
Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
data/appsvc_db.sql [new file with mode: 0755]

diff --git a/data/appsvc_db.sql b/data/appsvc_db.sql
new file mode 100755 (executable)
index 0000000..290feee
--- /dev/null
@@ -0,0 +1,11 @@
+PRAGMA journal_mode = PERSIST;
+
+CREATE TABLE IF NOT EXISTS appsvc (
+        operation TEXT,
+        mime_type TEXT DEFAULT 'NULL',
+        uri TEXT DEFAULT 'NULL',
+        pkg_name TEXT,
+        PRIMARY KEY (operation,mime_type,uri)
+);
+
+