Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class ApplicationRecord < ActiveRecord::Base
  2. self.abstract_class = true
  3. default_scope { order(:created_at) }
  4. before_create -> { self.id = SecureRandom.uuid }
  5. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement