Chatwoot/db/migrate/20210923190418_add_online_status_to_account_users.rb
Sojan Jose 0e0632be22
chore: Minor Housekeeping tasks (#3169)
- Limit Rack attack to production environments
- Make the long-running data migration optional
2021-10-08 15:45:45 +05:30

18 lines
581 B
Ruby

class AddOnlineStatusToAccountUsers < ActiveRecord::Migration[6.1]
def change
change_table :account_users, bulk: true do |t|
t.integer :availability, default: 0, null: false
t.boolean :auto_offline, default: true, null: false
end
end
# run as a seperate data migration if you want to migrate the user statuses
def update_existing_user_availability
User.find_in_batches do |user_batch|
user_batch.each do |user|
availability = user.availability
user.account_users.update(availability: availability)
end
end
end
end