class ChangeStudentsToAllowNullOnDob < ActiveRecord::Migration[6.0]
  def change
    change_column :Students, :DOB, :date, null: true, default: 0000-00-00
  end
end
