X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9568c7fee85a615830ba78639b2ee8440da60668..84c898173778ece298b6bcd6d9839c207a831a86:/db/migrate/20110521142405_rename_bugs_to_notes.rb diff --git a/db/migrate/20110521142405_rename_bugs_to_notes.rb b/db/migrate/20110521142405_rename_bugs_to_notes.rb index d3260dfa1..2e90b5ce8 100644 --- a/db/migrate/20110521142405_rename_bugs_to_notes.rb +++ b/db/migrate/20110521142405_rename_bugs_to_notes.rb @@ -1,7 +1,7 @@ class RenameBugsToNotes < ActiveRecord::Migration[4.2] def self.up - rename_enumeration "map_bug_status_enum", "note_status_enum" - rename_enumeration "map_bug_event_enum", "note_event_enum" + rename_enum "map_bug_status_enum", :to => "note_status_enum" + rename_enum "map_bug_event_enum", :to => "note_event_enum" rename_table :map_bugs, :notes rename_index :notes, "map_bugs_changed_idx", "notes_updated_at_idx" @@ -23,7 +23,7 @@ class RenameBugsToNotes < ActiveRecord::Migration[4.2] rename_index :notes, "notes_updated_at_idx", "map_bugs_changed_idx" rename_table :notes, :map_bugs - rename_enumeration "note_event_enum", "map_bug_event_enum" - rename_enumeration "note_status_enum", "map_bug_status_enum" + rename_enum "note_event_enum", :to => "map_bug_event_enum" + rename_enum "note_status_enum", :to => "map_bug_status_enum" end end