mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 23:45:10 +00:00
Improved code for new import + some tests.
This commit is contained in:
@@ -30,8 +30,8 @@ class ChangesForV474 extends Migration
|
||||
function (Blueprint $table) {
|
||||
$table->string('provider', 50)->after('file_type')->default('');
|
||||
$table->string('stage', 50)->after('status')->default('');
|
||||
$table->longText('transactions')->after('extended_status');
|
||||
$table->longText('errors')->after('transactions');
|
||||
$table->longText('transactions')->after('extended_status')->nullable();
|
||||
$table->longText('errors')->after('transactions')->nullable();
|
||||
|
||||
$table->integer('tag_id', false, true)->nullable()->after('user_id');
|
||||
$table->foreign('tag_id')->references('id')->on('tags')->onDelete('set null');
|
||||
|
Reference in New Issue
Block a user