osem-fcy/db/migrate/20160922205551_create_rates.rb

19 lines
391 B
Ruby
Raw Normal View History

2016-09-22 20:06:46 -04:00
class CreateRates < ActiveRecord::Migration
def self.up
create_table :rates do |t|
t.belongs_to :rater
t.belongs_to :rateable, polymorphic: true
t.float :stars, null: false
t.string :dimension
t.timestamps
end
add_index :rates, :rater_id
add_index :rates, [:rateable_id, :rateable_type]
end
def self.down
drop_table :rates
end
end