3 class CreateRedactions < ActiveRecord::Migration
5 create_table :redactions do |t|
12 [:nodes, :ways, :relations].each do |tbl|
13 add_column tbl, :redaction_id, :integer, :null => true
14 add_foreign_key tbl, [:redaction_id], :redactions, [:id]
19 [:nodes, :ways, :relations].each do |tbl|
20 remove_foreign_key tbl, [:redaction_id], :redactions, [:id]
21 remove_column tbl, :redaction_id
24 drop_table :redactions