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