1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00

fix for country name

This commit is contained in:
David Bomba 2020-06-03 21:05:08 +10:00
parent 90d359f157
commit 567e570102

View File

@ -189,5 +189,10 @@ class CountriesSeeder extends Seeder
}
$country->save();
}
$p = Country::where('country_code', 275)->first();
$p->name = 'Palestine';
$p->save();
}
}