当我运行迁移来创建外键约束时,我在命令提示符中出现以下错误。我需要帮助来克服它,因为我在互联网上搜索了很多东西并尝试了各种各样的东西但不幸的是没有一个工作
在Connection.php第647行:
SQLSTATE [42000]:语法错误或访问冲突:1064您有错误i
你的SQL语法;检查与MariaDB服务器对应的手册
用于在删除级联附近使用正确语法的版本')在第1行(
SQL:alter table category_posts
在删除级联上添加约束category_posts_post_id_fo
reign
外键(post_id
)引用posts
()
在Connection.php第445行:
SQLSTATE [42000]:语法错误或访问冲突:1064您有错误i 你的SQL语法;检查与MariaDB服务器对应的手册 用于在删除级联附近使用正确语法的版本')在第1行
外键约束的迁移代码如下
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCategoryPostsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('category_posts', function (Blueprint $table) {
$table->integer('category_id')->unsigned()->index();
$table->integer('post_id')->unsigned()->index();
$table->foreign('post_id')->referances('id')->on('posts')->onDelete('cascade');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('category_posts');
}
}
请帮助我。谢谢
答案 0 :(得分:9)
你只是拼错参考
$table->foreign('post_id')->referances('id')->on('posts')->onDelete('cascade');
使用references()
代替referances()
答案 1 :(得分:7)
您在迁移中遇到拼写错误
存在代码
$table->foreign('post_id')->referances('id')->on('posts')->onDelete('cascade');
新代码
$table->foreign('post_id')->references('id')->on('posts')->onDelete('cascade');