ts-db-helper
Version:
Simple ORM based on TypeScript
20 lines • 501 B
JavaScript
/**
* @class TableConfig
*
* @description
* a table configurator for model, @see {Table} annotation
*
* @author Olivier Margarit
* @since 0.1
*/
var TableConfig = /** @class */ (function () {
function TableConfig() {
/**
* @property {number} version, the table model version, information to help migration
*/
this.version = 0;
}
return TableConfig;
}());
export { TableConfig };
//# sourceMappingURL=table.configurator.js.map