mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Made two new columns nullable. #37
This commit is contained in:
parent
886dcae822
commit
dbcae16b75
@ -495,8 +495,8 @@ class ChangesForV321 extends Migration
|
||||
{
|
||||
Schema::table(
|
||||
'transaction_currencies', function (Blueprint $table) {
|
||||
$table->string('name', 48);
|
||||
$table->string('symbol', 4);
|
||||
$table->string('name', 48)->nullable();
|
||||
$table->string('symbol', 4)->nullable();
|
||||
}
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user