comment.js
1.02 KB
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
const Sequelize = require('sequelize');
module.exports = class Comment extends Sequelize.Model {
static init(sequelize) {
return super.init({
postid:{
type: Sequelize.INTEGER,
allowNull: false,
},
userid:{
type: Sequelize.STRING(30),
allowNull: false,
},
comment:{
type: Sequelize.TEXT,
allowNull: false,
},
created_at:{
type: Sequelize.DATE,
allowNull: false,
defaultValue: Sequelize.NOW,
},
},{
sequelize,
timestamps:false,
underscored:false,
modelName: 'Comment',
tableName:'comments',
paranoid:false,
charset:'utf8',
collate:'utf8_general_ci',
});
}
static associate(db) {
//db.Comment.belongsTo(db.Post,{foreignKey: 'postid', targetKey:'id' });
}
};