078_add_google_maps_key_to_domain.rb 202 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 class AddGoogleMapsKeyToDomain < ActiveRecord::Migration def self.up add_column :domains, :google_maps_key, :string end def self.down remove_column :domains, :google_maps_key end end