我有此配置:
App\Entity\Account:
account{1..5}:
user: '@user<current()>'
tweets: ['@tweet<numberBetween(1, 100)>']
followers: '<numberBetween(2, 5)>x @account*'
是否可以引用类型为account的对象,并避免在两列中使用同一对象。例如,这可以在两列中提供相同的ID。 这是多对多的关系,我想避免在数据库中输入条目,例如
account_id 54
follower_account_id 54
因为这意味着用户“跟随”自己。