Laravel 表 * 没有名为 * 的列
2022-08-30 22:48:25
我的单元测试最近开始失败。我收到此错误:
PDOException: SQLSTATE[HY000]:
General error: 1 table loan_details has no column named start_month
它发生的行,我有这个代码:
$loan = LoanDetails::create(['loan_percentage' => .8,
'loan_product_id' => 1,
'interest_rate' => .5,
'start_month' => 0,
'term' => 120,
'fixed_finance_fee' => 0,
'variable_finance_Fee' => 0,
'valid_from' => '2015-01-01'
]);
如果我注释掉“start_month”行,那么它在逻辑上是有效的。
在单元测试的设置中,我运行所有迁移(大约 80 次)。
我有一个如下所示的迁移:
Schema::table('loan_details', function(Blueprint $table){
$table->integer('start_month')->unsigned()->after('interest_only')->default(0);
$table->decimal('balloon_percent',4,3)->after('term')->nullable();
$table->integer('balloon_month')->after('balloon_percent')->nullable();
$table->dropColumn('ordinal_rank');
});
所以,我想知道是否所有的迁移都没有运行,所以我运行了这段代码:
$rows = DB::table('migrations')->get();
print_r($rows);
这会将所有迁移列为已完成。我正在使用内存中的sqlite db进行测试。
我想知道迁移是否以异步方式运行,并且在我的代码运行时它们是否全部完成?或者,如果迁移在某个地方默默地失败了?
我已经在这里呆了几个小时,不知道发生了什么。
*更新 我有一个在上述迁移之后运行的迁移,我确认后续迁移成功。因此,正是这一次迁移以某种方式默默地失败了。