class AddLastOnlineAt < ActiveRecord::Migration[6.0]
  def change
  	change_table :devices do |t|
  		t.datetime :last_online_at
  	end
  end
end
