我正在尝试在Laravel 5.7中创建数据库通知,并获取此SQL QueryException。我在toArray方法中的$ notifiable变量是用户,并且该ID是例外:invalid input syntax for integer: \"10337e35-8da9-4600-b7de-792398eb6f48\"
是要通知用户的正确ID。我以标准方式设置了通知表:
Schema::create('notifications', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->string('type');
$table->morphs('notifiable');
$table->text('data');
$table->timestamp('read_at')->nullable();
$table->timestamps();
});
我的用户表设置如下:
Schema::create('users', function (Blueprint $table) {
$table->uuid('id');
$table->primary('id');
$table->string('name');
$table->string('username')->unique();
$table->string('email');
$table->string('password');
$table->rememberToken();
$table->timestamps();
$table->softDeletes();
});
使用uuid作为主要ID进行设置。除此之外,通知本身在via方法中具有database
:
public function via($notifiable)
{
return ['database', 'mail'];
}
我在toArray方法中设置了几个属性。没什么复杂的。我还尝试手动将其插入通知表中,并且可以插入带有notifiable_id
作为整数的条目,但不能插入字符串/ uuid。令我感到困惑的是,将不会建立可指定系统以允许使用uuid作为id。也许这只是一个小小的调整,但我没有看到它,而且肯定可以肯定有人遇到了这个问题。干杯!
完全例外:
Object { message: "SQLSTATE[22P02]: Invalid text representation: 7 ERROR: invalid input syntax for integer: \"0e7cc3d8-bfca-41c1-99f8-6da9e8887465\" (SQL: insert into \"notifications\" (\"id\", \"type\", \"data\", \"read_at\", \"notifiable_id\", \"notifiable_type\", \"updated_at\", \"created_at\") values (f6206d4e-c98f-4ced-a1ee-6a755f073807, App\\Notifications\\BugTransition, {\"bug_id\":\"be14d750-ba6c-4e70-82f7-a36786ff37f4\",\"workflow_state\":\"accepted\"}, , 0e7cc3d8-bfca-41c1-99f8-6da9e8887465, App\\User, 2018-10-22 22:35:54, 2018-10-22 22:35:54))", exception: "Illuminate\\Database\\QueryException", file: "/srv/app/vendor/laravel/framework/src/Illuminate/Database/Connection.php", line: 664,
答案 0 :(得分:1)
问题是notifiable_id
。 $table->morphs('notifiable');
创建一个整数列,但是您正在尝试存储一个字符串。
您必须自己创建列(和索引):
$table->string('notifiable_type');
$table->string('notifiable_id');
$table->index(['notifiable_type', 'notifiable_id']);