change columntype to text

This commit is contained in:
paulwer 2024-01-10 14:32:15 +01:00
parent 27d105d6ff
commit 39cb03c8e2

View File

@ -17,7 +17,7 @@ return new class extends Migration {
// FIX: used column transaction_id was int and resulted in wrong value in field
Schema::table('bank_transactions', function (Blueprint $table) {
$table->string('nordigen_transaction_id')->nullable();
$table->text('nordigen_transaction_id')->nullable();
});
}