X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/c3e2e6462f293596aef5d5de18b0a173edc046c7..c555c912047c8d0d23123093a729aa87ca642aee:/db/migrate/010_diary_comments.rb

diff --git a/db/migrate/010_diary_comments.rb b/db/migrate/010_diary_comments.rb
index ad2edffa4..ac0f5e23a 100644
--- a/db/migrate/010_diary_comments.rb
+++ b/db/migrate/010_diary_comments.rb
@@ -1,4 +1,4 @@
-require 'migrate'
+require "migrate"
 
 class DiaryComments < ActiveRecord::Migration
   def self.up
@@ -11,8 +11,7 @@ class DiaryComments < ActiveRecord::Migration
       t.column "updated_at",     :datetime, :null => false
     end
 
-    add_index "diary_comments", ["diary_entry_id", "id"], :name => "diary_comments_entry_id_idx", :unique => true
-
+    add_index "diary_comments", %w[diary_entry_id id], :name => "diary_comments_entry_id_idx", :unique => true
   end
 
   def self.down