aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20140824191444_create_widget_votes.rb
blob: 467f937e2eb89a2851b565ab014a6e68f4a7fca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# -*- encoding : utf-8 -*-
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