feat: add phone number migration

This commit is contained in:
2025-05-18 20:04:09 +02:00
parent 49432dcbe5
commit 7b342a5fec

View File

@ -0,0 +1,11 @@
-- +goose Up
-- +goose StatementBegin
ALTER TABLE users
ADD phone_number TEXT NOT NULL;
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
ALTER TABLE users
DROP COLUMN phone_number;
-- +goose StatementEnd