14 lines
280 B
SQL
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
|