Skip to content
Snippets Groups Projects

Migrate user records to ghost in batch job runs

Closed Imre Farkas requested to merge if-366655-migrate_to_ghost_worker into master
4 unresolved threads
6 files
+ 63
0
Compare changes
  • Side-by-side
  • Inline
Files
6
+ 11
0
# frozen_string_literal: true
module Users
class MigrateToGhostUser < ApplicationRecord
self.table_name = 'migrate_to_ghost_user'
belongs_to :user
validates :user_id, presence: true
end
end
Loading