我有一个表费率,我想将费率值限制在 1 到 5 之间。
// Migration file for rates table
Schema::create('rates', function (Blueprint $table) {
$table->bigIncrements('id');
$table->unsignedInteger('user_id');
$table->morphs('rated');
$table->enum('rate', [1, 2, 3, 4, 5]);
$table->timestamps();
});
我为这个表创建了一个模型工厂。
//RateFactory.php
$factory->define(Rate::class, function (Faker $faker) {
$chapter = factory(Chapter::class)->create();
return [
'user_id' => factory(User::class)->create()->id,
'rate' => $faker->randomElement([1,2,3,4,5]),
'rated_type'> get_class($chapter),
'rated_id' => $chapter->id
];
});
当我在修补程序中使用这个工厂时:
$ php artisan tinker
>>> factory(App\Rate::class)->create();
终端返回以下异常:
带有消息“数据丢失”的 InvalidArgumentException
根据Laravel Columns Enum Documentation,我尝试了同样的方法。
模型工厂/测试不支持枚举吗?我在枚举方面做错了什么吗?