After record attribute updating ancestry_path is out-of-date. It becomes up-to-date after record reloading. ``` ruby d = Tag.find_or_create_by_path %w[a b c d] d.update {name: 'new_d'} d.ancestry_path => ["a", "b", "c", "d"] d.reload d.ancestry_path => ["a", "b", "c", "new_d"] ```