【发布时间】:2026-01-19 04:50:01
【问题描述】:
我正在宅基地运行退出的 laravel 项目。运行 php artisan migrate 时出现错误。
这里是完整的错误。
在 Connection.php 第 664 行:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'forum.chanel' doesn't exist (SQL: select * from `chanel`)
In Connection.php line 326:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'forum.chanel' doesn't exist
这是我的香奈儿表
public function up()
{
Schema::create('chanels', function (Blueprint $table) {
$table->increments('id');
$table->string('title');
$table->string('slug');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('chanels');
}
为什么会出现此错误以及如何解决此错误?
运行 composer update 时出现错误
【问题讨论】:
-
数据库名称是论坛
-
检查迁移的名称和顺序
-
一切都像我运行项目之前一样