demarches-normaliennes/db/migrate/20191113142816_instructeurs_remove_email.rb

8 lines
155 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
2019-11-13 15:38:44 +01:00
class InstructeursRemoveEmail < ActiveRecord::Migration[5.2]
def change
remove_column :instructeurs, :email
end
end