Enable disable/enable function of global apps
[platform/core/appfw/pkgmgr-server.git] / restriction.sql
1 PRAGMA journal_mode = WAL;
2
3 CREATE TABLE restriction (
4   uid   INTEGER NOT NULL,
5   pkgid TEXT NOT NULL,
6   mode  INTEGER NOT NULL,
7   UNIQUE (uid, pkgid)
8 );