https://github.com/phpexpertsinc/postgresforlaravel
A utility library for ease of using PostgreSQL with Laravel.
https://github.com/phpexpertsinc/postgresforlaravel
Last synced: 25 days ago
JSON representation
A utility library for ease of using PostgreSQL with Laravel.
- Host: GitHub
- URL: https://github.com/phpexpertsinc/postgresforlaravel
- Owner: PHPExpertsInc
- License: mit
- Created: 2023-12-14T22:37:32.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-15T00:02:47.000Z (over 1 year ago)
- Last Synced: 2024-04-22T23:45:38.562Z (about 1 year ago)
- Language: PHP
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Postgres For Laravel Library
[![TravisCI]()]()
[![Maintainability]()]()
[![Test Coverage]()]()Postgres For Laravel is a PHP Experts, Inc., Project meant to ease the use of the PostgreSQL database in Laravel.
## Installation
Via Composer
```bash
composer require phpexperts/postgres-for-laravel
```## Usage
The library should be ready to be used immediately after including via composer.
### PostgreSQL Timestamps
Postgres' timestamp support is extremely suprior to MySQL's. Yet, Laravel only supports the dumbed-down timestamps
by default. For best performance -including- both timezone-aware and millisecond resolution timestamps, it is best
to let POstgres itself handle every table's timestamps. To do this, do the following:vendor | project | created_at | updated_at
------------+----------------------+----------------------------+----------------------------
phpexperts | simple-dto | 2020-04-30 23:35:00 | 2023-07-18 19:08:47
phpexperts | rest-speaker | 2023-07-30 09:35:53 | 2023-07-30 09:37:37
phpexperts | postgres-for-laravel | 2023-12-14 17:58:46.381623 | 2023-12-14 17:58:46.417537**Automatic Autowiring**
1. Extend every model from PHPExperts\PostgresForLaravel\PostgresModel.
2. Run `./artisan migrate`**Manual Wiring**
1. Add `public $timestamps = false;` to your Model.
2. Create a new migration: `./artisan make:migration use_native_postgres_timestamps`
3. Add the following code to the migration:```php
GPG Fingerprint: 4BF8 2613 1C34 87AC D28F 2AD8 EB24 A91D D612 5690
CEO: PHP Experts, Inc.## License
MIT license. Please see the [license file](LICENSE) for more information.
:wq