Skip to content

Instantly share code, notes, and snippets.

@edjasperdev
Created July 24, 2014 23:17
Show Gist options
  • Save edjasperdev/b708413adf610a7f5553 to your computer and use it in GitHub Desktop.
Save edjasperdev/b708413adf610a7f5553 to your computer and use it in GitHub Desktop.
class Party < ActiveRecord::Base
before_create :generate_code
belongs_to :user
def generate_code
self.code = rand(36**5).to_s(36)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment