mirror of
https://github.com/System-End/cdn.git
synced 2026-04-20 00:25:16 +00:00
12 lines
248 B
Ruby
12 lines
248 B
Ruby
class ApplicationRecord < ActiveRecord::Base
|
|
primary_abstract_class
|
|
|
|
before_create :generate_uuid_v7
|
|
|
|
private
|
|
|
|
def generate_uuid_v7
|
|
return if self.class.attribute_types["id"].type != :uuid
|
|
self.id ||= SecureRandom.uuid_v7
|
|
end
|
|
end
|