Download the PHP package rits-tecnologia/eloquent-insert-on-conflict without Composer
On this page you can find all versions of the php package rits-tecnologia/eloquent-insert-on-conflict. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download rits-tecnologia/eloquent-insert-on-conflict
More information about rits-tecnologia/eloquent-insert-on-conflict
Files in rits-tecnologia/eloquent-insert-on-conflict
Package eloquent-insert-on-conflict
Short Description Macros for INSERT ON CONFLICT with Eloquent
License MIT
Informations about the package eloquent-insert-on-conflict
Laravel Insert On Conflict
This package provides macros to run INSERT ... ON CONFLICT DO NOTHING or DO UPDATE SET queries on models with Laravel's ORM Eloquent using PostgreSQL.
Installation
Install this package with composer.
If you don't use Package Auto-Discovery yet add the service provider to your Package Service Providers in config/app.php
.
Usage
Models
Call insertOnConflict
from a model with the array of data to insert in its table.
Customizing the ON CONFLICT DO UPDATE clause
Update only certain columns
If you want to update only certain columns, pass them as the 2nd argument.
Update with custom values
You can customize the value with which the columns will be updated when a row already exists by passing an associative array.
In the following example, if a user with id = 1 doesn't exist, it will be created with name = 'created user'. If it already exists, it will be updated with name = 'updated user'.
The generated SQL is:
You may combine key/value pairs and column names in the 2nd argument to specify the columns to update with a custom literal or expression or with the default VALUES(column)
. For example:
will generate