Skip to content

getghostr/cockroachdb-laravel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cockroachdb-laravel

Latest Version on Packagist Total Downloads

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.

About

A simple CockroachDB driver for Laravel 6+

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  

Languages