Added social media fields to track submission form by using a polymorphic association with the Contact Model.
6 lines
189 B
Ruby
6 lines
189 B
Ruby
class AddPolymorphicToContact < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :contacts, :contactable_type, :string
|
|
add_column :contacts, :contactable_id, :integer
|
|
end
|
|
end
|