summaryrefslogtreecommitdiff
path: root/db/migrate/20160416180807_add_award_emoji.rb
blob: 99c984fd1167df0e87131ca6a80ea84d315578c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# rubocop:disable all
class AddAwardEmoji < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    create_table :award_emoji do |t|
      t.string :name
      t.references :user
      t.references :awardable, polymorphic: true

      t.timestamps null: true
    end

    add_index :award_emoji, :user_id
    add_index :award_emoji, [:awardable_type, :awardable_id]
  end
end