X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/bb490aca81d8063a9ad8dd8f1a023c709c096792..e3b8b8933044104bb515d34c3d36851caba78ac7:/db/migrate/20110508145337_cleanup_bug_tables.rb diff --git a/db/migrate/20110508145337_cleanup_bug_tables.rb b/db/migrate/20110508145337_cleanup_bug_tables.rb index a5563ce0f..e7dfcb793 100644 --- a/db/migrate/20110508145337_cleanup_bug_tables.rb +++ b/db/migrate/20110508145337_cleanup_bug_tables.rb @@ -4,32 +4,20 @@ class CleanupBugTables < ActiveRecord::Migration rename_column :map_bugs, :last_changed, :updated_at rename_column :map_bugs, :date_closed, :closed_at - rename_index :map_bugs, :map_bugs_tile_idx, :map_bugs_tile_staus_idx - rename_index :map_bugs, :map_bugs_changed_idx, :map_bugs_updated_at_idx - rename_index :map_bugs, :map_bugs_created_idx, :map_bugs_created_at_idx - rename_column :map_bug_comment, :date_created, :created_at rename_column :map_bug_comment, :commenter_name, :author_name rename_column :map_bug_comment, :commenter_ip, :author_ip rename_column :map_bug_comment, :commenter_id, :author_id rename_column :map_bug_comment, :comment, :body - - rename_index :map_bug_comment, :map_bug_comment_id_idx, :map_bug_comment_bug_id_idx end def self.down - rename_index :map_bug_comment, :map_bug_comment_bug_id_idx, :map_bug_comment_id_idx - rename_column :map_bug_comment, :body, :comment rename_column :map_bug_comment, :author_id, :commenter_id rename_column :map_bug_comment, :author_ip, :commenter_ip rename_column :map_bug_comment, :author_name, :commenter_name rename_column :map_bug_comment, :created_at, :date_created - rename_index :map_bugs, :map_bugs_created_at_idx, :map_bugs_created_idx - rename_index :map_bugs, :map_bugs_updated_at_idx, :map_bugs_changed_idx - rename_index :map_bugs, :map_bugs_tile_staus_idx, :map_bugs_tile_idx - rename_column :map_bugs, :closed_at, :date_closed rename_column :map_bugs, :updated_at, :last_changed rename_column :map_bugs, :created_at, :date_created