class DropAnalytics < ActiveRecord::Migration
  def change
    drop_table :analytics do |t|
      t.integer :user_id
      t.integer :controller_id
      t.integer :action_id
      t.datetime :action_date
      t.origin :integer
    end
  end
end
