mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-17 09:51:40 +00:00
Add a title to the table, so multiple balances per account are possible.
This commit is contained in:
@@ -15,6 +15,7 @@ return new class extends Migration
|
||||
Schema::create('account_balances', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->timestamps();
|
||||
$table->string('title',100)->nullable();
|
||||
$table->integer('account_id', false, true);
|
||||
$table->integer('transaction_currency_id', false, true);
|
||||
$table->decimal('balance', 32, 12);
|
||||
|
Reference in New Issue
Block a user