2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
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
|