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进行测试。

我想知道迁移是否以异步方式运行,并且在我的代码运行时它们是否全部完成?或者,如果迁移在某个地方默默地失败了?

我已经在这里呆了几个小时,不知道发生了什么。

*更新 我有一个在上述迁移之后运行的迁移,我确认后续迁移成功。因此,正是这一次迁移以某种方式默默地失败了。


答案 1

我发现了问题。这是因为 sqlite 具有荒谬的限制,即在一个表调用中没有多个 add 列语句,如下所示。

当我分离出迁移时,如下所示,它的工作原理:

Schema::table('loan_details', function(Blueprint $table){
    $table->integer('start_month')->unsigned()->after('interest_only')->default(0);
});
Schema::table('loan_details', function(Blueprint $table){
    $table->decimal('balloon_percent',4,3)->after('term')->nullable();
});
Schema::table('loan_details', function(Blueprint $table){
    $table->integer('balloon_month')->after('balloon_percent')->nullable();
});
Schema::table('loan_details', function(Blueprint $table){
    $table->dropColumn('ordinal_rank');
});

答案 2

在此处检查 SQLite 数据库记录

还有许多其他有用的内置点命令 -- 请参阅 http://www.sqlite.org/sqlite.html 的文档,部分 sqlite3 的特殊命令。

另外,检查数据库架构


推荐