feat: Added chapter 6 first auth attempt
This commit is contained in:
7
sql/schema/003_users_auth.sql
Normal file
7
sql/schema/003_users_auth.sql
Normal file
@ -0,0 +1,7 @@
|
||||
-- +goose Up
|
||||
ALTER TABLE users
|
||||
ADD COLUMN hashed_password TEXT DEFAULT 'unset' NOT NULL;
|
||||
|
||||
-- +goose Down
|
||||
ALTER TABLE users
|
||||
DROP COLUMN hashed_password;
|
Reference in New Issue
Block a user