Remove alg column

This commit is contained in:
cheddar 2025-02-20 23:06:04 -05:00
parent 32fcdcbbf6
commit 8d6102c58f
No known key found for this signature in database

View file

@ -24,7 +24,7 @@ func InitSqlite(dbPath string) (*dbWrapper, error) {
createStmt := ` createStmt := `
create table create table
if not exists 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) _, err = db.Exec(createStmt)