hasOne(User::class, [ 'id' => 'user_id' ]); } /** * {@inheritDoc} */ public function getMaterial() { return $this->hasOne(Material::class, [ 'id' => 'material_id' ]); } /** * {@inheritDoc} */ public function tableName() { return "comments"; } }