Releases: yadakhov/insert-on-duplicate-key
Releases · yadakhov/insert-on-duplicate-key
Update package for laravel 8
v1.2.0
v1.1.0: Merge pull request #13 from votemike/affected_rows
Fix #12 Returning affected rows
Add support for table prefixes.
The package has been running in production for over 6 months.
First 1.0.x release.
Add support for table prefixes
v0.1.0 Add php 7.1
Refactor out DB fascade
v0.0.9 Fix #9. Put back get_called_class().
Added support for non-default connection
Merge pull request #7 from hibob224/non-default-connection Added support for non-default connection
Refactor inLineArray() method
Merge pull request #6 from kkomelin/master Used array functions to inline arrays
Remove Primary Key Check
The primary key check doesn't not need to be there since ON DUPLICATE KEY also works on unique key.
The onus is on the caller to have the correct data for inserts.
OnDuplicateKeyInsert can take an optional $updateColumn
- user can specify the ON DUPLICATE KEY UPDATE columns
- Added REPLACE INTO function