Newer
Older
dmpopidor / db / migrate / 20170619173045_add_data_contact_email_and_data_contact_phone_to_plans.rb
class AddDataContactEmailAndDataContactPhoneToPlans < ActiveRecord::Migration
  def change
    add_column :plans, :data_contact_email, :string
    add_column :plans, :data_contact_phone, :string
  end
end