mirror of https://github.com/Requarks/wiki.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.2 KiB
66 lines
1.2 KiB
'use strict'
|
|
|
|
/**
|
|
* Document schema
|
|
*/
|
|
module.exports = (sequelize, DataTypes) => {
|
|
let documentSchema = sequelize.define('setting', {
|
|
path: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false
|
|
},
|
|
title: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
validate: {
|
|
len: [2, 255]
|
|
}
|
|
},
|
|
subtitle: {
|
|
type: DataTypes.STRING,
|
|
allowNull: true,
|
|
defaultValue: ''
|
|
},
|
|
parentPath: {
|
|
type: DataTypes.STRING,
|
|
allowNull: true,
|
|
defaultValue: ''
|
|
},
|
|
parentTitle: {
|
|
type: DataTypes.STRING,
|
|
allowNull: true,
|
|
defaultValue: ''
|
|
},
|
|
isDirectory: {
|
|
type: DataTypes.BOOLEAN,
|
|
allowNull: false,
|
|
defaultValue: false
|
|
},
|
|
isEntry: {
|
|
type: DataTypes.BOOLEAN,
|
|
allowNull: false,
|
|
defaultValue: false
|
|
},
|
|
isDraft: {
|
|
type: DataTypes.BOOLEAN,
|
|
allowNull: false,
|
|
defaultValue: false
|
|
},
|
|
searchContent: {
|
|
type: DataTypes.TEXT,
|
|
allowNull: true,
|
|
defaultValue: ''
|
|
}
|
|
}, {
|
|
timestamps: true,
|
|
version: true,
|
|
indexes: [
|
|
{
|
|
unique: true,
|
|
fields: ['path']
|
|
}
|
|
]
|
|
})
|
|
|
|
return documentSchema
|
|
}
|