如何删除Eloquent中的多态关系?

时间:2015-02-03 17:55:30

标签: php laravel eloquent polymorphic-associations

我有一个这样的模型:

<?php

class Post extends Eloquent {
    protected $fillable = [];


    public function photos()
    {
        return $this->morphMany('Upload', 'imageable');
    }

    public function attachments()
    {
        return $this->morphMany('Upload', 'attachable');
    }

}

和我的morphMany表的架构是这样的:

CREATE TABLE `uploads` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`raw_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`size` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`downloads` int(11) NOT NULL DEFAULT '0',
`imageable_id` int(11) DEFAULT NULL,
`imageable_type` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`attachable_id` int(11) DEFAULT NULL,
`attachable_type` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `uploads_user_id_index` (`user_id`),
CONSTRAINT `uploads_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `posts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

现在我需要删除此表格的一行,我尝试$posts->photos()->delete();但删除了与此Post相关联的所有行。

有人可以帮助我吗?

4 个答案:

答案 0 :(得分:10)

$posts->photos()是用于返回帖子的所有照片的关系查询。如果你打电话给delete(),它将删除所有这些记录。如果您只想删除特定记录,则需要确保只在要删除的记录上调用delete。例如:

$posts->photos()->where('id', '=', 1)->delete();

答案 1 :(得分:0)

这种关系甚至不需要。只需直接使用上传模型:

Upload::find($id)->delete();

甚至更短:

Upload::destroy($id);

答案 2 :(得分:0)

要从数据透视表中删除多对多态关系,只需使用detach:

$posts->photos($photoModel)->detach();

答案 3 :(得分:-3)

我将使用detach方法删除关系,如下所示:

$post = Post::find($id);
$post->photos()->detach();

Laravel docs explains this better