index.js 264 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 "use strict"; var AbstractDialect = function() { } AbstractDialect.prototype.supports = { 'RETURNING': false, 'DEFAULT': true, 'DEFAULT VALUES': false, 'VALUES ()': false, 'LIMIT ON UPDATE':false, schemas: false } module.exports = AbstractDialect