-- +goose Up -- +goose StatementBegin ALTER TABLE public.users ADD metas jsonb DEFAULT '{}'::jsonb NOT NULL; ALTER TABLE public.users ADD auth_token jsonb DEFAULT '{}'::jsonb NOT NULL; -- +goose StatementEnd -- +goose Down -- +goose StatementBegin ALTER TABLE public.users DROP COLUMN metas; ALTER TABLE public.users DROP COLUMN auth_token; -- +goose StatementEnd