Abhishek Prakash
Results
1
comments of
Abhishek Prakash
trafficstars
You can resolve this error by disabling the foreign and unique key checks in the Dump instance while exporting the database. `$dump = new Dump;` `$dump ->disableForeignKeyChecks(true) ->disableUniqueKeyChecks(true) ->file("database.sql") ->dsn($DSN)...