7 lines
155 B
Ruby
7 lines
155 B
Ruby
# frozen_string_literal: true
|
|
|
|
class InstructeursRemoveEmail < ActiveRecord::Migration[5.2]
|
|
def change
|
|
remove_column :instructeurs, :email
|
|
end
|
|
end
|