* Get the attributes of an insert query, which contains the just inserted id. * * @returns {string} The field name. * @private
()
| 139 | * @private |
| 140 | */ |
| 141 | getInsertIdField() { |
| 142 | return 'insertId'; |
| 143 | } |
| 144 | |
| 145 | getUniqueConstraintErrorMessage(field) { |
| 146 | let message = field ? `${field} must be unique` : 'Must be unique'; |
no outgoing calls
no test coverage detected