mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Append default data to current currency table (assuming default entries).
This commit is contained in:
parent
dbcae16b75
commit
80f5e61b6b
@ -496,9 +496,10 @@ class ChangesForV321 extends Migration
|
||||
Schema::table(
|
||||
'transaction_currencies', function (Blueprint $table) {
|
||||
$table->string('name', 48)->nullable();
|
||||
$table->string('symbol', 4)->nullable();
|
||||
$table->string('symbol', 8)->nullable();
|
||||
}
|
||||
);
|
||||
\DB::update('UPDATE `transaction_currencies` SET `symbol` = "€", `name` = "Euro" WHERE `code` = "EUR";');
|
||||
}
|
||||
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user