General error: 1364 Field 'id' doesn't have a default value in Laravel 9.x

General error: 1364 Field 'id' doesn't have a default value in Laravel 9.x

我在我的应用程序中使用 UUID,并且我已经实现了该特征,如在线所示,如下所示:

trait Uuid
{
    protected static function boot(): void
    {
        parent::boot();

        static::creating(function (Model $model) {
            if (!$model->getKey()) {
                $model->{$model->getKeyName()} = (string) Str::uuid();
            }
        });
    }

    public function getIncrementing(): bool
    {
        return false;
    }

    public function getKeyType(): string
    {
        return 'string';
    }
}

回想起来,这几乎适用于所有地方:我正在尝试在我的产品上创建一个支点 table,如下所示:

public function categories(): BelongsToMany
{
    return $this->belongsToMany(
        Category::class,
        ProductCategory::class,
        'product_id',
        'category_id'
    );
}

迁移如下所示:

public function up(): void
{
    Schema::create('product_categories', function (Blueprint $table) {
        $table->uuid('id')->primary();
        $table->foreignUuid('product_id')->index();
        $table->foreignUuid('category_id')->index();
        $table->timestamps();
    });
}

但是,每当我在播种中执行以下操作时:

Product::first()->categories()->sync(Categories::all()->pluck('id'));

我看到这个错误:

PDOException::("SQLSTATE[HY000]: General error: 1364 Field 'id' doesn't have a default value")

CategoryProductCategory 都使用了 Uuidd 特性,我不知道如何让它工作。

感谢任何帮助。

作为可能的解决方案之一,您可以将自己的模型与您的枢轴特征一起使用 table。

更多: https://laravel.com/docs/9.x/eloquent-relationships#defining-custom-intermediate-table-models.