我的表帖子没有任何限制,我默认Laravel选择自动增量。它仍然失败,并显示“只能在自动增量列上”。
移民
public function up()
{
Schema::create('posts', function (Blueprint $table) {
$table->id();
$table->id('user_id')->nullable();
$table->id('admin_id')->nullable();
$table->string('about')->nullable();
$table->decimal('price')->nullable();
$table->string('new_used')->nullable();
$table->string('negotiable')->nullable();
$table->dateTime('expire_date')->nullabe();
$table->timestamps();
});
}
跃然一笑
守着一只汪