creddy/src-tauri/migrations/20221201002355_initial.sql

18 lines
268 B
MySQL
Raw Normal View History

2022-12-01 00:27:59 +00:00
-- Add migration script here
CREATE TABLE credentials (
access_key_id TEXT,
2022-12-01 05:45:43 +00:00
secret_key BLOB, -- encrypted secret
2022-12-01 00:27:59 +00:00
nonce BLOB,
expires INTEGER
)
2022-12-01 05:45:43 +00:00
CREATE TABLE config (
name TEXT,
data TEXT
)
CREATE TABLE clients (
name TEXT,
path TEXT
)