Skip to content

Releases: yadakhov/insert-on-duplicate-key

Update package for laravel 8

01 Apr 19:18
Compare
Choose a tag to compare

Update to use "illuminate/database": "^8.35",

v1.2.0

30 Aug 14:24
Compare
Choose a tag to compare
Fix #17 Incremental values on UPDATE

v1.1.0: Merge pull request #13 from votemike/affected_rows

24 Jan 05:27
Compare
Choose a tag to compare

Add support for table prefixes.

03 Jan 18:39
Compare
Choose a tag to compare

The package has been running in production for over 6 months.

First 1.0.x release.

Add support for table prefixes

01 Jan 01:02
Compare
Choose a tag to compare
v0.1.0

Add php 7.1

Refactor out DB fascade

30 Nov 16:36
Compare
Choose a tag to compare
v0.0.9

Fix #9.  Put back get_called_class().

Added support for non-default connection

28 Aug 19:11
Compare
Choose a tag to compare
Merge pull request #7 from hibob224/non-default-connection

Added support for non-default connection

Refactor inLineArray() method

18 Jul 18:47
Compare
Choose a tag to compare
Merge pull request #6 from kkomelin/master

Used array functions to inline arrays

Remove Primary Key Check

23 Jun 03:44
Compare
Choose a tag to compare

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

07 Jun 16:23
Compare
Choose a tag to compare
  • user can specify the ON DUPLICATE KEY UPDATE columns
  • Added REPLACE INTO function