| 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
 |