Skip to content

Instantly share code, notes, and snippets.

@anytizer
Created November 21, 2025 06:49
Show Gist options
  • Select an option

  • Save anytizer/c192d21347ec145e2d4c159906982fca to your computer and use it in GitHub Desktop.

Select an option

Save anytizer/c192d21347ec145e2d4c159906982fca to your computer and use it in GitHub Desktop.
Laravel bootsrap attach a secondary sqlite database
```
use Illuminate\Support\Facades\DB;
...
public function boot(): void
{
DB::statement("ATTACH DATABASE '/path/database2.db' AS db2;");
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment