From what I've read, Pulse supported only MySQL, at least at the time of beta launch.
Dec 13, 2023
3
Level 2
Larvel Pulse: Unsupported database driver [sqlite].
When executing phpunit, the migration 2023_06_07_000001_create_pulse_tables.php is run on the SQLite database, resulting in an Exception: Unsupported database driver [sqlite]. Is it possible to skip the migration? I tried adding PULSE_ENABLED=false to phpunit.xml, but it didn't have any effect.
Level 2
I used the following workaround in the 'database/migrations/2023_06_07_000001_create_pulse_tables.php':
if (app()->runningUnitTests()) {
return;
}
3 likes
Please or to participate in this conversation.