我正在创建一个Laravel电子商务网站,并且正在关注本教程:https://www.youtube.com/watch?v=0lo7vzO1Fto&list=PLEhEHUEU3x5oPTli631ZX9cxl6cU_sDaR&index=20&t=417s
我在第18集中,在其中创建了Order表。我在第一部分中苦苦挣扎,创建了迁移。有两个创建迁移文件:
2020_07_10_134530_create_orders_table.php(创建订单表)
2020_07_10_135517_create_order_product_table.php(为订单和产品创建数据透视表)
我的“ create_orders_table.php”看起来像这样:
public function up()
{
Schema::create('orders', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id')->unsigned()->nullable();
$table->foreign('user_id')->references('id')->on('users')
->onUpdate('cascade')->onDelete('set null');
$table->string('billing_email')->nullable();
$table->string('billing_name')->nullable();
$table->string('billing_address')->nullable();
$table->string('billing_city')->nullable();
$table->string('billing_province')->nullable();
$table->string('billing_postalcode')->nullable();
$table->string('billing_phone')->nullable();
$table->string('billing_name_on_card')->nullable();
$table->integer('billing_discount')->default(0);
$table->string('billing_discount_code')->nullable();
$table->integer('billing_subtotal');
$table->integer('billing_tax');
$table->integer('billing_total');
$table->string('payment_gateway')->default('stripe');
$table->boolean('shipped')->default(false);
$table->string('error')->nullable();
$table->timestamps();
});
}
我的“ create_order_product_table.php”看起来像这样:
public function up()
{
Schema::create('order_product', function (Blueprint $table) {
$table->increments('id');
$table->integer('order_id')->unsigned()->nullable();
$table->foreign('order_id')->references('id')
->on('orders')->onUpdate('cascade')->onDelete('set null');
$table->integer('product_id')->unsigned()->nullable();
$table->foreign('product_id')->references('id')
->on('iamlushes')->onUpdate('cascade')->onDelete('set null');
$table->integer('quantity')->unsigned();
$table->timestamps();
});
}
当我执行命令时:
php artisan migrate
我从终端收到以下错误:
rosscurrie@Rosss-Air JanVal % php artisan migrate
Migrating: 2020_07_10_134530_create_orders_table
Illuminate\Database\QueryException
SQLSTATE[HY000]: General error: 3780 Referencing column 'user_id' and referenced column 'id' in foreign key constraint 'orders_user_id_foreign' are incompatible. (SQL: alter table `orders` add constraint `orders_user_id_foreign` foreign key (`user_id`) references `users` (`id`) on delete set null on update cascade)
at vendor/laravel/framework/src/Illuminate/Database/Connection.php:671
667| // If an exception occurs when attempting to run a query, we'll format the error
668| // message to include the bindings with SQL, which will make this exception a
669| // lot more helpful to the developer instead of just the database's errors.
670| catch (Exception $e) {
> 671| throw new QueryException(
672| $query, $this->prepareBindings($bindings), $e
673| );
674| }
675|
+11 vendor frames
12 database/migrations/2020_07_10_134530_create_orders_table.php:38
Illuminate\Support\Facades\Facade::__callStatic("create")
+22 vendor frames
35 artisan:37
Illuminate\Foundation\Console\Kernel::handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
主要错误似乎是:
SQLSTATE[HY000]: General error: 3780 Referencing column 'user_id' and referenced column 'id' in foreign key constraint 'orders_user_id_foreign' are incompatible. (SQL: alter table `orders` add constraint `orders_user_id_foreign` foreign key (`user_id`) references `users` (`id`) on delete set null on update cascade)
我认为它是指我的“ create_orders_table.php”迁移中的这一行代码:
$table->foreign('user_id')->references('id')->on('users')->onUpdate('cascade')->onDelete('set null');
我不确定如何解决此错误,这是我的“ 2014_10_12_000000_create_users_table.php”迁移:
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
}
这是我的产品表'2020_06_16_124046_create_iamlushes_table.php'的迁移:
public function up()
{
Schema::create('iamlushes', function (Blueprint $table) {
$table->id();
$table->string('name')->unique();
$table->string('fullname')->unique();
$table->string('productLogo');
$table->string('img')->unique();
$table->text('description');
$table->integer('price');
$table->timestamps();
});
}
答案 0 :(得分:3)
您正在使用$table->id();
创建users
表。它在数据库中创建了一个类型为unsinedBigInteger的列,但是您在orders
表中将此列称为unsignedInteger
,这会引起冲突。
您应使用unsignedBigInteger
作为user_id
表中orders
的列类型,如下所示:
Schema::create('orders', function (Blueprint $table) {
$table->increments('id');
$table->bigInteger('user_id')->unsigned()->nullable();
$table->foreign('user_id')->references('id')->on('users')
->onUpdate('cascade')->onDelete('set null');
....your code
});