aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20170218111254_set_referentials_ready.rb
blob: 602c03e3b2b4983158464823f2d283e0d7f935ce (plain)
1
2
3
4
5
6
7
8
class SetReferentialsReady < ActiveRecord::Migration
  def up
    Referential.update_all ready: true
  end

  def down
  end
end