class CreateInteractions < ActiveRecord::Migration def change create_table :interactions do |t| t.integer "interactable_id" t.string "interactable_type" t.string "key" t.string "value" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.boolean "current", default: true end end end