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)