Remove unused columns and tables

This commit is contained in:
Paul Chavard 2019-09-17 14:13:32 +02:00
parent 1105766b26
commit 8e44172e59
5 changed files with 54 additions and 50 deletions

View file

@ -0,0 +1,8 @@
class DropFlipflopFeatures < ActiveRecord::Migration[5.2]
def change
remove_column :administrateurs, :features
remove_column :instructeurs, :features
drop_table :flipflop_features
end
end