dijkstra-backend-cloudron/node_modules/knex/lib/query/constants.js

14 lines
228 B
JavaScript
Raw Normal View History

/**
* internal constants, do not use in application code
*/
module.exports = {
lockMode: {
forShare: 'forShare',
forUpdate: 'forUpdate',
},
waitMode: {
skipLocked: 'skipLocked',
noWait: 'noWait',
},
};