X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/cd2ca12d4235473cd3611b84e2a61649c17da2f6..7da66025272b7b5ac3a0fa6d7ea3c42c652eb7ff:/db/migrate/010_diary_comments.rb diff --git a/db/migrate/010_diary_comments.rb b/db/migrate/010_diary_comments.rb index ad2edffa4..4e95b1976 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