UNPKG

quaerateum

Version:

Simple typescript ORM for node.js based on data-mapper, unit-of-work and identity-map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JS.

9 lines (5 loc) 207 B
import { Platform } from './Platform'; import { MySqlSchemaHelper } from '../schema/MySqlSchemaHelper'; export class MySqlPlatform extends Platform { protected schemaHelper = new MySqlSchemaHelper(); }