@adonisjs/lucid
Version:
SQL ORM built on top of Active Record pattern
25 lines (24 loc) • 690 B
JavaScript
;
/*
* @adonisjs/lucid
*
* (c) Harminder Virk <virk@adonisjs.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.SqliteDialect = void 0;
const SqliteBase_1 = require("./SqliteBase");
class SqliteDialect extends SqliteBase_1.BaseSqliteDialect {
constructor() {
super(...arguments);
Object.defineProperty(this, "name", {
enumerable: true,
configurable: true,
writable: true,
value: 'sqlite3'
});
}
}
exports.SqliteDialect = SqliteDialect;