Package Data | |
---|---|
Maintainer Username: | mikebronner |
Maintainer Contact: | mike@genealabs.com (Mike Bronner) |
Package Create Date: | 2017-06-20 |
Package Last Update: | 2023-05-20 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-16 15:02:15 |
Package Statistics | |
---|---|
Total Downloads: | 116,457 |
Monthly Downloads: | 6,981 |
Daily Downloads: | 227 |
Total Stars: | 50 |
Total Watchers: | 3 |
Total Forks: | 1 |
Total Open Issues: | 0 |
By default I like my Postgres database to use text
type for all textual fields.
When you run your migrations with this package installed, it will convert the
following migration types to text
: char
, and string
.
composer require genealabs/laravel-optimized-postgres
If you are on Laravel 5.5, the service provider will auto-register once the
package is installed. You can skip this step. If you haven't upgraded to
Laravel 5.5 yet, add the following to the providers
array in your
\config\app.php
file:
GeneaLabs\LaravelOptimizedPostgres\Providers\LaravelOptimizedPostgresService::class,
When writing migrations, be sure to remove the following use statement from the top of the file:
use Illuminate\Support\Facades\Schema;
This is included in the two default migrations provided with Laravel projects,
but I don't believe is added when you make
a new migration.