不要怂,就是干,撸起袖子干!

index.js 468 Bytes
'use strict';

var AbstractDialect = function() {

};

AbstractDialect.prototype.supports = {
  'RETURNING': false,
  'DEFAULT': true,
  'DEFAULT VALUES': false,
  'VALUES ()': false,
  'LIMIT ON UPDATE': false,
  schemas: false,
  constraints: {
    restrict: true
  },
  index: {
    collate: true,
    length: false,
    parser: false,
    concurrently: false,
    type: false,
    using: true,
  },
  joinTableDependent: true
};

module.exports = AbstractDialect;