-- Adds the address type (home/work/other) to saved addresses.
-- Already applied to the local DB; run this on the production DB at deploy time.
ALTER TABLE shipping_addresses
    ADD COLUMN address_type ENUM('home','work','other') NOT NULL DEFAULT 'home' AFTER country;
