From 8d6102c58fdeb23443553c574d22e75ea8054d3c Mon Sep 17 00:00:00 2001 From: cheddar Date: Thu, 20 Feb 2025 23:06:04 -0500 Subject: [PATCH] Remove alg column --- keydirectory/sqlite.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keydirectory/sqlite.go b/keydirectory/sqlite.go index 372b453..e053085 100644 --- a/keydirectory/sqlite.go +++ b/keydirectory/sqlite.go @@ -24,7 +24,7 @@ func InitSqlite(dbPath string) (*dbWrapper, error) { createStmt := ` create table if not exists - keys(keyId text not null primary key, userId text, alg text, publicKey blob) + keys(keyId text not null primary key, userId text, publicKey blob) ` _, err = db.Exec(createStmt)