1 class CreateRedactions < ActiveRecord::Migration[4.2]
3 create_table :redactions do |t|
7 t.timestamps :null => true
10 [:nodes, :ways, :relations].each do |tbl|
11 add_column tbl, :redaction_id, :integer, :null => true
12 add_foreign_key tbl, :redactions, :name => "#{tbl}_redaction_id_fkey"