connect to db on startup

This commit is contained in:
2022-12-02 22:59:13 -08:00
parent e423df8e51
commit 196510e9a2
7 changed files with 454 additions and 15 deletions

View File

@ -1,17 +1,17 @@
-- Add migration script here
CREATE TABLE credentials (
access_key_id TEXT,
secret_key BLOB, -- encrypted secret
secret_key BLOB, -- encrypted
nonce BLOB,
expires INTEGER
)
);
CREATE TABLE config (
name TEXT,
data TEXT
)
);
CREATE TABLE clients (
name TEXT,
path TEXT
)
);