• Sean McGivern's avatar
    Enable RuboCop for migrations · 98bb435f
    Sean McGivern authored
    Migrations shouldn't fail RuboCop checks - especially lint checks, such
    as the nested method check. To avoid changing code in existing
    migrations, add the magic comment to the top of each of them to skip
    that file.
    98bb435f
20160416180807_add_award_emoji.rb 350 Bytes
# rubocop:disable all
class AddAwardEmoji < ActiveRecord::Migration
  def change
    create_table :award_emoji do |t|
      t.string :name
      t.references :user
      t.references :awardable, polymorphic: true

      t.timestamps
    end

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