Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.18 KB | None | 0 0
  1. class License < ApplicationRecord
  2.   has_one :license_type
  3.  
  4.   before_create :set_expired_at
  5.  
  6.   private
  7.  
  8.   def set_expired_at
  9.     self.expired_at = Time.zone.now
  10.   end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement