oak-general-business/es/oak-app-domain/Article/Storage.js

24 lines
507 B
JavaScript

import { genericActions as actions } from "oak-domain/lib/actions/action";
export const desc = {
attributes: {
name: {
notNull: true,
type: "varchar",
params: {
length: 32
}
},
content: {
notNull: true,
type: "text"
},
articleMenuId: {
notNull: true,
type: "ref",
ref: "articleMenu"
}
},
actionType: "crud",
actions
};