Guest User

Untitled

a guest
Sep 23rd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. class Plan < ActiveRecord::Base
  2. attr_accessible :name, :amount, as: :admin
  3.  
  4. def self.free
  5. Plan.where(name: 'free').first_or_create!
  6. end
  7. end
Add Comment
Please, Sign In to add comment