UNPKG

reldens

Version:
38 lines (30 loc) 526 B
/** * * Reldens - ConfigTypesModel * */ class ConfigTypesModel { constructor(id, label) { this.id = id; this.label = label; } static get tableName() { return 'config_types'; } static get relationTypes() { return { config: 'many' }; } static get relationMappings() { return { 'related_config': 'config' }; } } module.exports.ConfigTypesModel = ConfigTypesModel;