2013-02-05 14:16:51 -05:00
|
|
|
class CreateStars < ActiveRecord::Migration
|
|
|
|
def change
|
|
|
|
create_table :stars, id: false do |t|
|
|
|
|
t.integer :parent_id, null: false
|
|
|
|
t.string :parent_type, limit: 50, null: false
|
2013-02-25 11:42:20 -05:00
|
|
|
t.integer :user_id, null: true
|
2017-08-07 11:48:36 -04:00
|
|
|
t.timestamps null: false
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
add_index :stars, [:parent_id, :parent_type, :user_id]
|
|
|
|
end
|
|
|
|
end
|