class AddCityCountryToEvents
Public Instance Methods
change()
click to toggle source
# File lib/nexmo_developer/db/migrate/20190220092207_add_city_country_to_events.rb, line 2 def change add_column :events, :city, :string add_column :events, :country, :string, :limit => 2 end