fix: compatible with pgsql

This commit is contained in:
hackerESQ
2025-03-07 17:45:54 -06:00
parent 5fc9455908
commit 730903c383
2 changed files with 2 additions and 7 deletions
+2 -2
View File
@@ -60,7 +60,7 @@ class MarketDataSeeder extends Seeder
}
} catch (\Throwable $e) {
throw new \Exception('Error: '.substr($e->getMessage(), 0, 500));
throw new \Exception('Error: '.$e->getMessage());
}
}
}
@@ -73,7 +73,7 @@ class MarketDataSeeder extends Seeder
// Close the CSV file
fclose($handle);
echo "Imported $rowCount market data items successfully!\n";
echo "\n > Imported $rowCount market data items successfully!";
} else {