-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticle.js
39 lines (39 loc) · 895 Bytes
/
article.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
"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(
{
title: {
type: DataTypes.STRING,
allowNull: false,
validate: {
notNull: {
msg: "标题必须存在。",
},
notEmpty: {
msg: "标题不能为空。",
},
len: {
args: [2, 45],
msg: "标题长度需要在2 ~ 45个字符之间。",
},
},
},
},
{
sequelize,
modelName: "Article",
}
);
return Article;
};