X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/822759075cf43cfc99262186830aa329f4034667..a39c645602f9d27b7927500c93890f4d7d79620e:/db/migrate/20120318201948_create_redactions.rb diff --git a/db/migrate/20120318201948_create_redactions.rb b/db/migrate/20120318201948_create_redactions.rb index bcb3929cb..1cdcc8625 100644 --- a/db/migrate/20120318201948_create_redactions.rb +++ b/db/migrate/20120318201948_create_redactions.rb @@ -1,26 +1,17 @@ -require 'migrate' +require "migrate" -class CreateRedactions < ActiveRecord::Migration - def up +class CreateRedactions < ActiveRecord::Migration[5.0] + def change create_table :redactions do |t| t.string :title t.text :description - t.timestamps + t.timestamps :null => true end [:nodes, :ways, :relations].each do |tbl| add_column tbl, :redaction_id, :integer, :null => true - add_foreign_key tbl, [:redaction_id], :redactions, [:id] + add_foreign_key tbl, :redactions, :name => "#{tbl}_redaction_id_fkey" end end - - def down - [:nodes, :ways, :relations].each do |tbl| - remove_foreign_key tbl, [:redaction_id], :redactions, [:id] - remove_column tbl, :redaction_id - end - - drop_table :redactions - end end