class AddNullDefaultStudentAddressOpt < ActiveRecord::Migration[6.0]
  def change
    change_column :StudentDetails, :StudentAddressOpt, :boolean, null: true, default: ''
  end
end
