class ChangeStudentMedicalLogs < ActiveRecord::Migration[6.0]
  def up
    change_table :StudentMedicalLogs, bulk: true do |t|
      t.change :Complaint, :text, null: true
      t.change :SMCID, :integer, null: true, default: :null
      t.datetime :entry_date
    end
  end
end
