I include `path` in the json, so I'm storing it as a string in the db. Is there a preferred method for doing this? Right now I'm doing: ```ruby after_commit :cache_path, on: [:create] def cache_path self.path = ancestry_path.join("/") self.save end ``` thanks