add to migration

This commit is contained in:
Joseph Montanaro 2022-11-30 21:45:43 -08:00
parent 2cfde4d841
commit e423df8e51

View File

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