Files
sure/test/fixtures/addresses.yml
Will Wilson ad23820a2e fix: change postal_code column from integer to string (#1585)
* fix: change postal_code column from integer to string

Allows non-numeric postal codes such as UK format (e.g. SW1A 2AA).
The integer column was silently dropping any alphanumeric input.

The migration is marked irreversible — once alphanumeric postal codes
exist, they cannot be safely cast back to integer.

* fix: update schema.rb, quote fixture postal_code, and add alphanumeric test

* fix: use conventional migration timestamp
2026-04-29 15:30:04 +02:00

10 lines
168 B
YAML

one:
line1: 123 Main Street
line2: Apt 4B
locality: Los Angeles
region: CA
country: US
postal_code: "90001"
addressable: one
addressable_type: Property