backend/app/models/api/Node.model.js

35 lines
830 B
JavaScript

const Model = require("flitter-orm/src/model/Model");
const uuid = require('uuid/v4');
/*
* Node Model
* -------------------------------------------------------------
* Put some description here!
*/
class Node extends Model {
static get schema() {
// Return a flitter-orm schema here.
return {
UUID: { type: String, default: () => uuid() },
Type: String,
Value: {
Mode: {type: String, default: 'norm'},
Value: String,
},
PageId: String,
CreatedAt: { type: Date, default: () => new Date },
UpdatedAt: { type: Date, default: () => new Date },
CreatedUserId: String,
UpdateUserId: String
};
}
// Static and instance methods can go here
get page() {
const Page = this.model.get("api:Page")
return this.belongs_to_one(Page, "PageId", "_id")
}
}
module.exports = exports = Node;