gitlab-org--gitlab-foss/db/migrate/20160416180807_add_award_em...

18 lines
381 B
Ruby
Raw Normal View History

# rubocop:disable all
2016-04-16 19:09:08 +00:00
class AddAwardEmoji < ActiveRecord::Migration
DOWNTIME = false
2016-04-16 19:09:08 +00:00
def change
create_table :award_emoji do |t|
t.string :name
t.references :user
t.references :awardable, polymorphic: true
t.timestamps null: true
2016-04-16 19:09:08 +00:00
end
add_index :award_emoji, :user_id
2016-06-01 09:23:09 +00:00
add_index :award_emoji, [:awardable_type, :awardable_id]
2016-04-16 19:09:08 +00:00
end
end