我正在尝试在 Laravel 中创建外键,但是当我使用 artisan 迁移表时,出现以下错误: SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint (SQL: alter table `products` add constraint `products_user_id_foreign` foreign key (`user_id`) references `users` (`id`))这是我的用户迁移<?phpuse Illuminate\Database\Migrations\Migration;use Illuminate\Database\Schema\Blueprint;use Illuminate\Support\Facades\Schema;class CreateUsersTable extends Migration{ /** * Run the migrations. * * @return void */ public function up() { Schema::create('users', function (Blueprint $table) { $table->increments('id'); $table->string('name'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('surname')->nullable(); $table->string('showname')->nullable(); $table->string('business')->nullable(); $table->string('NIP')->nullable(); $table->string('PESEL')->nullable(); $table->string('address')->nullable(); $table->string('city')->nullable(); $table->string('postalcode')->nullable(); $table->string('phone')->nullable(); $table->string('comments')->nullable(); $table->string('password'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); }}这是我的产品迁移<?phpuse Illuminate\Support\Facades\Schema;use Illuminate\Database\Schema\Blueprint;use Illuminate\Database\Migrations\Migration;class CreateProductsTable extends Migration{ /** * Run the migrations. * * @return void */请帮我。我不知道该怎么办。我在databaase.php中将数据库引擎更改为Inno DB,但它根本没有帮助。
1 回答
一只甜甜圈
TA贡献1836条经验 获得超5个赞
Laravelincrements()
创建一个“自动递增 UNSIGNED INTEGER(主键)等效列。 ”。您的外键列user_id
必须与其引用的列具有完全相同的类型。
在您的CreateProductsTable
迁移中,更改
$table->integer('user_id')->nullable();
到
$table->integer('user_id')->unsigned()->nullable();
然后再试一次。
- 1 回答
- 0 关注
- 142 浏览
添加回答
举报
0/150
提交
取消