reldens
Version:
Reldens - MMORPG Platform
38 lines (30 loc) • 526 B
JavaScript
/**
*
* 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;