class ChangeContactsEmailToAllowNull < ActiveRecord::Migration[6.0]
  def change
    change_column :Contact, :EMail, :string, limit: 128, null: true, default: nil
  end
end
