aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20170710130230_add_check_sum_source.rb
blob: b8e36e9540a7e51ba0a12800b5aae06cc46f2e5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class AddCheckSumSource < ActiveRecord::Migration
  def change
    add_column :vehicle_journey_at_stops, :checksum_source, :string
    add_column :footnotes, :checksum_source, :string
    add_column :routing_constraint_zones, :checksum_source, :string
    add_column :routes, :checksum_source, :string
    add_column :journey_patterns, :checksum_source, :string
    add_column :vehicle_journeys, :checksum_source, :string
    add_column :time_table_dates, :checksum_source, :string
    add_column :time_table_periods, :checksum_source, :string
    add_column :time_tables, :checksum_source, :string
  end
end