Fixes for CI/CD

This commit is contained in:
Deon George
2022-02-01 20:15:11 +11:00
parent b9b4416737
commit d1a7e399dc
9 changed files with 27 additions and 32 deletions

View File

@@ -22,7 +22,7 @@ class CountryTableSeeder extends Seeder
$o->three_code = 'AUS';
$o->active = TRUE;
$oo = Currency::where('iso_code','AUD')->firstOrFail();
$oo = Currency::where('iso','AUD')->firstOrFail();
$oo->country()->save($o);
}