From dcd02c03a0aba3b11c16063bbcb794b7bc99f7b8 Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Tue, 29 Jun 2021 13:35:27 -0600 Subject: [PATCH] migrations --- appmgr/.gitignore | 1 + appmgr/migrations/20210629193146_Init.sql | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 appmgr/migrations/20210629193146_Init.sql 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