Hi, Is there any way to automatically create a row inside the pivot table for a model? For example: `Post` <-> `Author` If I want to create a `Post` related to an `Author`, how do I specify a definition for that? Unfortunately that doesn't work: ```php $fm->define(Post::class)->setDefinitions([ 'title' => Faker::name(), 'author' => 'factory|Author', ]); ``` Should I do that with a custom maker?