* Get the attributes of an insert query, which contains the just inserted id. * * @returns {string} The field name. * @private
()
| 163 | * @private |
| 164 | */ |
| 165 | getInsertIdField() { |
| 166 | return 'insertId'; |
| 167 | } |
| 168 | |
| 169 | getUniqueConstraintErrorMessage(field) { |
| 170 | let message = field ? `${field} must be unique` : 'Must be unique'; |
no outgoing calls
no test coverage detected