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

Fix for fonts seeder

This commit is contained in:
Hillel Coren 2016-02-04 23:09:03 +02:00
parent 024e1eb046
commit 7b5cd4f31c

View File

@ -224,6 +224,7 @@ class FontsSeeder extends Seeder
foreach ($fonts as $font) {
if (!DB::table('fonts')->where('name', '=', $font['name'])->get()) {
$font['is_early_access'] = false;
Font::create($font);
}
}