nidus-sync/db/migrations/00129_address_country_text.sql

9 lines
127 B
MySQL
Raw Normal View History

2026-04-10 22:32:40 +00:00
-- +goose Up
ALTER TABLE address
ALTER COLUMN country
TYPE TEXT
USING country::TEXT;
DROP TYPE CountryType;
-- +goose Down