You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
867 B
JavaScript

7 months ago
'use strict';
const {
Model
} = require('sequelize');
module.exports = (sequelize, DataTypes) => {
class Article extends Model {
/**
* Helper method for defining associations.
* This method is not a part of Sequelize lifecycle.
* The `models/index` file will call this method automatically.
*/
static associate(models) {
// define association here
}
}
Article.init({
7 months ago
title: {
type: DataTypes.STRING,
allowNull: false,
validate: {
notNull: {
msg: '标题必须存在。'
},
notEmpty: {
msg: '标题不能为空。'
},
len: {
args: [2, 45],
msg: '标题长度需要在2 ~ 45个字符之间。'
}
}
},
7 months ago
content: DataTypes.TEXT
}, {
sequelize,
modelName: 'Article',
});
return Article;
};