aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20180528125333_spring_cleanup.rb
blob: 75f4c0c0b49b87e8283171fbb877905abf42f5a3 (plain)
1
2
3
4
5
6
7
class SpringCleanup < ActiveRecord::Migration
  def change
    [:journey_frequencies, :timebands].each do |t|
      drop_table t
    end
  end
end