Files
quyun/backend_v1/database/migrations/20251220033752_alter_user.sql
Rogee 0e4af79b53
Some checks failed
build quyun / Build (push) Failing after 1m25s
feat: phone validation
2025-12-20 11:47:45 +08:00

14 lines
280 B
SQL

-- +goose Up
-- +goose StatementBegin
-- add phone field to users table
ALTER TABLE public.users
ADD phone varchar(15) DEFAULT '' NOT NULL;
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
ALTER TABLE public.users
DROP COLUMN phone;
-- +goose StatementEnd