嘟嘟社区

[疑问] laravel9 migrations问题,解决问题送腾讯视频VIP一个月


2022_08_05_010456_create_posts_table.php
  1. Schema::create(‘posts’, function (Blueprint $table) {
  2.         $table->foreignId(‘category_id’);
  3.         $table->foreign(‘category_id’)->references(‘id’)->on(‘users’);
  4. });

复制代码

table只有改成users可以迁移成功,其他任何table都失败,比如:categories

你的users 是在posts 之前就migration 了吗