BigW Consortium Gitlab

20160416182152_convert_award_note_to_emoji_award.rb 1.47 KB
Newer Older
1
# rubocop:disable all
2
class ConvertAwardNoteToEmojiAward < ActiveRecord::Migration
3
  disable_ddl_transaction!
4

5 6 7 8 9
  def up
    if Gitlab::Database.postgresql?
      migrate_postgresql
    else
      migrate_mysql
10 11
    end
  end
12 13 14 15 16 17 18 19 20 21

  def down
    add_column :notes, :is_award, :boolean

    # This migration does NOT move the awards on notes, if the table is dropped in another migration, these notes will be lost.
    execute "INSERT INTO notes (noteable_type, noteable_id, author_id, note, created_at, updated_at, is_award) (SELECT awardable_type, awardable_id, user_id, name, created_at, updated_at, TRUE FROM award_emoji)"
  end

  def migrate_postgresql
    connection.transaction do
22
      execute 'LOCK notes IN EXCLUSIVE MODE'
23 24 25
      execute "INSERT INTO award_emoji (awardable_type, awardable_id, user_id, name, created_at, updated_at) (SELECT noteable_type, noteable_id, author_id, note, created_at, updated_at FROM notes WHERE is_award = true)"
      execute "DELETE FROM notes WHERE is_award = true"
      remove_column :notes, :is_award, :boolean
26 27 28 29
    end
  end

  def migrate_mysql
30 31
    execute 'LOCK TABLES notes WRITE, award_emoji WRITE;'
    execute 'INSERT INTO award_emoji (awardable_type, awardable_id, user_id, name, created_at, updated_at) (SELECT noteable_type, noteable_id, author_id, note, created_at, updated_at FROM notes WHERE is_award = true);'
32 33
    execute "DELETE FROM notes WHERE is_award = true"
    remove_column :notes, :is_award, :boolean
34 35
  ensure
    execute 'UNLOCK TABLES'
36
  end
37
end