class AllowNullOnStudentsExtId < ActiveRecord::Migration[6.0]
  def change
    change_column :Students, :ExtID, :string, limit: 32, null: true, default: nil
  end
end
