class CreatePhcmembersMemberAddresses < ActiveRecord::Migration[7.0] def change create_table :phcmembers_member_addresses do |t| t.string :address_address_line_1 t.string :address_address_line_2 t.string :address_city t.string :address_province t.string :address_country t.string :address_postal_code t.string :address_type t.references :profile t.string :slug t.string :user_id t.timestamps end end end