getghostr / cockroachdb-laravel
Simple CockroachDB driver for Laravel 6+
Installs: 8 319
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 4
Forks: 3
Open Issues: 0
Requires
- php: ^7.4|^8.0
- illuminate/database: ^6.0|^7.0|^8.0|^9.0|^10.0
Suggests
- illuminate/filesystem: Required to use the migrations (^9.0).
This package is auto-updated.
Last update: 2024-10-28 17:40:27 UTC
README
Simple CockroachDB driver for Laravel 6+
Installation
You can install the package via composer:
composer require getghostr/cockroachdb-laravel
Usage
Step 1
If you're not using package discovery please add the following to your providers array in config/app.php
:
Ghostr\Cockroach\CockroachServiceProvider::class,
Step 2
Head over to your config/database.php
and add the following to your connections array:
'cockroach' => [ 'driver' => 'cockroach', 'url' => env('DATABASE_URL'), 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '5432'), 'database' => env('DB_DATABASE', 'forge'), 'username' => env('DB_USERNAME', 'forge'), 'password' => env('DB_PASSWORD', ''), 'charset' => 'utf8', 'prefix' => '', 'prefix_indexes' => true, 'schema' => 'public', 'sslmode' => 'prefer', ],
Special features
Index stored columns
This package adds support for index stored columns
They can be declared in migrations like so:
Schema::table('my_table', function (Blueprint $table) { // Single stored column $table->index('col1')->storing('col2'); // Multiple stored columns $table->index('col1')->storing(['col2', 'col3']) })
NOTE: Index name generation is unaffected by stored columns
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.