我目前正在开展一个学校项目,并使用我的数据库遇到了这个问题, 我想创建一个与视频和类别的关系这里是我的两个表。 视频表:
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateVideosTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('videos', function (Blueprint $table) {
$table->increments('id');
$table->string('name')->default('');
$table->string('url')->default('');
$table->integer('category_id')->unsigned()->nullable();
$table->foreign('category_id')->references('id')->on('categories');
$table->string('img_url')->default('');
$table->integer('views')->nullable();
$table->integer('rating')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('videos');
}
}
类别表:
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCategoriesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('categories', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('categories');
}
}
当我运行php artisan migrate:在控制台刷新时出现此错误:
[Illuminate\Database\QueryException] SQLSTATE[HY000]: General error: 1215
Cannot add foreign key constraint (SQL: alter table `videos` add constraint
`videos_category_id_foreign` foreign key (`category_id`) references
`categories` (`id`))
[PDOException] SQLSTATE [HY000]:常规错误:1215无法添加外键约束
我不明白为什么,因为当我改变这个时:
$table->foreign('category_id')->references('id')->on('categories');
到此:
$table->foreign('category_id')->references('id')->on('users');
它有效,然后我没有任何错误,我希望有人可以帮我解决这个问题!
答案 0 :(得分:0)
您应该在视频表
之前创建类别表您可以使用它并删除您的类别迁移:
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateVideosTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
// create categories table
Schema::create('categories', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->timestamps();
});
//now create videos table
Schema::create('videos', function (Blueprint $table) {
$table->increments('id');
$table->string('name')->default('');
$table->string('url')->default('');
$table->integer('category_id')->unsigned()->nullable();
$table->foreign('category_id')->references('id')->on('categories');
$table->string('img_url')->default('');
$table->integer('views')->nullable();
$table->integer('rating')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('videos');
Schema::dropIfExists('categories');
}
}