X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/e7cd90f4b4d431b32a92ca68c3df817e8e765d09..fb4d003ebee8842ace3807bb1a60b9b36d94723e:/db/migrate/054_refactor_map_bug_tables.rb diff --git a/db/migrate/054_refactor_map_bug_tables.rb b/db/migrate/054_refactor_map_bug_tables.rb index b45f935cc..6d259d20a 100644 --- a/db/migrate/054_refactor_map_bug_tables.rb +++ b/db/migrate/054_refactor_map_bug_tables.rb @@ -2,35 +2,33 @@ require 'lib/migrate' class RefactorMapBugTables < ActiveRecord::Migration def self.up - - create_table :map_bug_comment do |t| t.column :id, :bigint, :null => false - t.column :bug_id, :bigint, :null => false + t.column :bug_id, :bigint, :null => false t.boolean :visible, :null => false t.datetime :date_created, :null => false - t.string :commenter_name - t.string :commenter_ip - t.column :commenter_id, :bigint + t.string :commenter_name + t.string :commenter_ip + t.column :commenter_id, :bigint t.string :comment end - remove_column :map_bugs, :text + remove_column :map_bugs, :text add_index :map_bug_comment, [:bug_id], :name => "map_bug_comment_id_idx" - add_foreign_key :map_bug_comment, [:bug_id], :map_bugs, [:id] - add_foreign_key :map_bug_comment, [:commenter_id], :users, [:id] + add_foreign_key :map_bug_comment, [:bug_id], :map_bugs, [:id] + add_foreign_key :map_bug_comment, [:commenter_id], :users, [:id] end def self.down - - add_column :map_bugs, :text, :string + remove_foreign_key :map_bug_comment, [:commenter_id] + remove_foreign_key :map_bug_comment, [:bug_id] remove_index :map_bugs, :name => "map_bug_comment_id_idx" - remove_foreign_key :map_bug_comment, [:bug_id] - remove_foreign_key :map_bug_comment, [:commenter_id] - drop_table :map_bugs_comment + add_column :map_bugs, :text, :string + + drop_table :map_bug_comment end end