Files
chirpy/sql/schema/003_hashedpassword.sql
T

8 lines
145 B
SQL
Raw Normal View History

-- +goose Up
ALTER TABLE users
ADD hashed_password TEXT NOT NULL DEFAULT 'unset';
-- +goose Down
ALTER TABLE users
DROP COLUMN hashed_password;