'insert' => 'ON CONFLICT DO NOTHING',
];
/**
* Checks if the ignore option is supported by
* the Database Driver for the specific statement.
*
* @return string
*/
protected function compileIgnore(string
$statement) { $sql = parent::
compileIgnore($statement);
if (!
empty($sql)) { $sql = ' ' .
trim($sql);
} return $sql;
} /**
* ORDER BY
*
* @param string $direction ASC, DESC or RANDOM
*
* @return BaseBuilder
*/