Getting this error when seeding on PostgreSQL:
SQLSTATE[42704]: Undefined object: 7 ERROR: unrecognized configuration parameter "foreign_key_checks" (SQL: SET FOREIGN_KEY_CHECKS=1;)
This is caused by:
\DB::statement('SET FOREIGN_KEY_CHECKS=1;');
This is found on line 173 in seedGeoFile.php;
Fortunately Laravel supports:
Schema::disableForeignKeyConstraints();
Getting this error when seeding on PostgreSQL:
This is caused by:
This is found on line 173 in seedGeoFile.php;
Fortunately Laravel supports: