Fixed locking syntax for PostgreSQL

This commit is contained in:
Yorick Peterse 2016-06-14 12:17:41 +02:00
parent d032c6b0ff
commit c6744b4949
No known key found for this signature in database
GPG Key ID: EDD30D2BEB691AC9
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class ConvertAwardNoteToEmojiAward < ActiveRecord::Migration
def migrate_postgresql
connection.transaction do
execute 'LOCK notes IN EXCLUSIVE'
execute 'LOCK notes IN EXCLUSIVE MODE'
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