fix: restore commented out code

This commit is contained in:
Gabe Kangas 2024-06-25 22:39:22 -07:00
parent 979573525d
commit 15f9d5817b

View File

@ -76,8 +76,8 @@ func SetupPersistence(file string) error {
_, _ = db.Exec("pragma wal_checkpoint(full)")
createWebhooksTable()
// createUsersTable(db)
// createAccessTokenTable(db)
tables.CreateUsersTable(db)
tables.CreateAccessTokenTable(db)
if _, err := db.Exec(`CREATE TABLE IF NOT EXISTS config (
"key" string NOT NULL PRIMARY KEY,