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
6 files
+ 75
0
Compare changes
  • Side-by-side
  • Inline
Files
6
+ 12
0
# frozen_string_literal: true
module Users
class MigrateToGhostUser < ApplicationRecord
self.table_name = 'migrate_to_ghost_user'
belongs_to :user
belongs_to :initiator_author, class_name: 'User'
validates :user_id, presence: true
end
end
Loading