aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20140824191444_create_widget_votes.rb
blob: 0a7b4856af8d4f50cdbff1d6dac9cb59b2db7f76 (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateWidgetVotes < ActiveRecord::Migration
  def change
    create_table :widget_votes do |t|
      t.string :cookie
      t.belongs_to :info_request, :null => false

      t.timestamps
    end
    add_index :widget_votes, :info_request_id
  end
end