Initial commit
This commit is contained in:
15
node_modules/knex/lib/query/constants.js
generated
vendored
Executable file
15
node_modules/knex/lib/query/constants.js
generated
vendored
Executable file
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* internal constants, do not use in application code
|
||||
*/
|
||||
module.exports = {
|
||||
lockMode: {
|
||||
forShare: 'forShare',
|
||||
forUpdate: 'forUpdate',
|
||||
forNoKeyUpdate: 'forNoKeyUpdate',
|
||||
forKeyShare: 'forKeyShare',
|
||||
},
|
||||
waitMode: {
|
||||
skipLocked: 'skipLocked',
|
||||
noWait: 'noWait',
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user