From 789532fff9f6a1e0b281a13556964a1c748f517e Mon Sep 17 00:00:00 2001 From: Michael Quigley Date: Mon, 23 Jan 2023 12:52:47 -0500 Subject: [PATCH] fix sqlite migration (#156) --- controller/store/sql/sqlite3/007_v0_3_0_salted_passwords.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/store/sql/sqlite3/007_v0_3_0_salted_passwords.sql b/controller/store/sql/sqlite3/007_v0_3_0_salted_passwords.sql index 1c3fc52b..f30b0732 100644 --- a/controller/store/sql/sqlite3/007_v0_3_0_salted_passwords.sql +++ b/controller/store/sql/sqlite3/007_v0_3_0_salted_passwords.sql @@ -1,3 +1,3 @@ --- +migrate up +-- +migrate Up alter table accounts add column salt string; \ No newline at end of file