class ChangeServiceStudentLogs < ActiveRecord::Migration[6.0]
  def change
    change_table :ServiceStudentLogs, bulk: true do |t|
      t.change :AuthorID, :integer, null: true
      t.change :Notes, :text, null: true
      t.timestamps null: true
    end
  end
end
