class AddOnlineToUsers < ActiveRecord::Migration[6.0]
  def change
    add_column :Users, :online, :boolean, null: false, default: false
  end
end
