From e423df8e51d1d8c6b636c434c0b81de008d1e0e9 Mon Sep 17 00:00:00 2001 From: Joseph Montanaro Date: Wed, 30 Nov 2022 21:45:43 -0800 Subject: [PATCH] add to migration --- src-tauri/migrations/20221201002355_initial.sql | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src-tauri/migrations/20221201002355_initial.sql b/src-tauri/migrations/20221201002355_initial.sql index da7e5ee..6b78147 100644 --- a/src-tauri/migrations/20221201002355_initial.sql +++ b/src-tauri/migrations/20221201002355_initial.sql @@ -1,7 +1,17 @@ -- Add migration script here CREATE TABLE credentials ( access_key_id TEXT, - secret_key_enc BLOB, + secret_key BLOB, -- encrypted secret nonce BLOB, expires INTEGER ) + +CREATE TABLE config ( + name TEXT, + data TEXT +) + +CREATE TABLE clients ( + name TEXT, + path TEXT +)