Guest User

Untitled

a guest
May 26th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. # script/generate model Pokemon name:string parent_id:integer
  2. class Pokemon < ActiveRecord::Base
  3. belongs_to :parent, :class_name => "Pokemon"
  4. has_many :childs, :class_name => "Pokemon"
  5. end
Add Comment
Please, Sign In to add comment