demarches-normaliennes/db/migrate/20190917115911_drop_flipflop_features.rb

9 lines
205 B
Ruby
Raw Normal View History

2019-09-17 14:13:32 +02:00
class DropFlipflopFeatures < ActiveRecord::Migration[5.2]
def change
remove_column :administrateurs, :features
remove_column :instructeurs, :features
drop_table :flipflop_features
end
end