discourse/db/migrate/20120529202707_create_stars.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
370 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class CreateStars < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
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, %i[parent_id parent_type user_id]
end
end