sig-auth.git

git clone https://git.crispbyte.dev/sig-auth.git

commit
8d6102c
parent
32fcdcb
author
cheddar
date
2025-02-21 05:06:04 +0100 CET
Remove alg column
1 files changed,  +1, -1
M keydirectory/sqlite.go
+1, -1
1@@ -24,7 +24,7 @@ func InitSqlite(dbPath string) (*dbWrapper, error) {
2 	createStmt := `
3 	create table
4 	if not exists
5-	keys(keyId text not null primary key, userId text, alg text, publicKey blob)
6+	keys(keyId text not null primary key, userId text, publicKey blob)
7 	`
8 
9 	_, err = db.Exec(createStmt)