Passwords!

This commit is contained in:
2025-03-11 19:54:00 +02:00
parent 647edb6d25
commit 6661fdf89b
10 changed files with 128 additions and 18 deletions

View File

@@ -0,0 +1,5 @@
-- +goose Up
ALTER TABLE users ADD COLUMN hashed_password TEXT NOT NULL DEFAULT 'unset';
-- +goose Down
ALTER TABLE users DROP COLUMN hashed_password;