diff --git a/appmgr/.gitignore b/appmgr/.gitignore index 7fb7fc14c..432234a58 100644 --- a/appmgr/.gitignore +++ b/appmgr/.gitignore @@ -2,3 +2,4 @@ **/*.rs.bk .DS_Store .vscode +secrets.db diff --git a/appmgr/migrations/20210629193146_Init.sql b/appmgr/migrations/20210629193146_Init.sql new file mode 100644 index 000000000..87b06ec61 --- /dev/null +++ b/appmgr/migrations/20210629193146_Init.sql @@ -0,0 +1,8 @@ +-- Add migration script here +CREATE TABLE IF NOT EXISTS tor +( + package TEXT NOT NULL, + interface TEXT NOT NULL, + key BLOB NOT NULL, + PRIMARY KEY (package, interface) +); \ No newline at end of file