sdispater / orator

The Orator ORM provides a simple yet beautiful ActiveRecord implementation.

Home Page:https://orator-orm.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Insert Ignore error

mosamadi opened this issue · comments

Implement qurey that insert multiple rows and on error skip like this one in postgress:

INSERT INTO test (id) VALUES (1),(2),(3),(1),(4) ON CONFLICT DO NOTHING;