@lionrockjs/mod-admin-cms
Version:
The CMS module for LionRockJS
18 lines (15 loc) • 356 B
JavaScript
import { Model } from '@lionrockjs/central';
export default class PageTag extends Model{
page_id = null;
tag_id = null;
weight = 5;
static joinTablePrefix = 'page_tag';
static tableName = 'page_tags';
static fields = new Map([
["tag_id", "Int!"],
["weight", "Int"]
]);
static belongsTo = new Map([
["page_id", "Page"]
]);
}