aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20171121153506_remove_creator_id.rb
blob: 5209418411b756de19598b70971a25a9ffa197e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
class RemoveCreatorId < ActiveRecord::Migration
  def change
    [
      'companies', 'connection_links', 'facilities', 'group_of_lines',
      'journey_patterns', 'lines', 'networks', 'pt_links', 'routes', 'routing_constraint_zones',
      'stop_areas', 'stop_points', 'time_tables', 'timebands', 'vehicle_journeys', 'access_links', 'access_points'
    ].each do |table_name|
      remove_column table_name, :creator_id, :string
    end
  end
end