mirror of
https://github.com/internetee/registry.git
synced 2025-08-05 09:21:43 +02:00
8 lines
220 B
Ruby
8 lines
220 B
Ruby
class ContactVersion < PaperTrail::Version
|
|
include LogTable
|
|
include UserEvents
|
|
# self.table_name = :post_versions
|
|
# self.sequence_name = :post_version_id_seq
|
|
|
|
scope :deleted, -> { where(event: 'destroy') }
|
|
end
|