Slide 8
Slide 8 text
使い方通りに以下の様なデータを
●
rails g model group name
●
Create migration: rails g migration
add_ancestry_to_group ancestry:string
●
Add index to migration: add_index
gruop, :ancestry (UP) / remove_index
gruop, :ancestry (DOWN)
●
Migrate your database: rake db:migrate
●
Add to app/models/gruop.rb: has_ancestry