mirror of
https://github.com/internetee/registry.git
synced 2025-06-07 21:25:39 +02:00
Creates a log_registrant_verifications table and version class as per https://github.com/internetee/registry/issues/1425#issuecomment-567117002
7 lines
250 B
Ruby
7 lines
250 B
Ruby
class RegistrantVerificationVersion < PaperTrail::Version
|
|
include VersionSession
|
|
self.table_name = :log_registrant_verifications
|
|
self.sequence_name = :log_registrant_verifications_id_seq
|
|
|
|
scope :deleted, -> { where(event: 'destroy') }
|
|
end
|