57 lines
1008 B
JavaScript
57 lines
1008 B
JavaScript
|
'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
|
||
|
}
|
||
|
}, {
|
||
|
timestamps: true,
|
||
|
version: true,
|
||
|
indexes: [
|
||
|
{
|
||
|
unique: true,
|
||
|
fields: ['path']
|
||
|
}
|
||
|
]
|
||
|
})
|
||
|
|
||
|
return documentSchema
|
||
|
}
|