forked from Flex-Armenian-Fox/kanban-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask.js
45 lines (45 loc) · 1.05 KB
/
task.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
40
41
42
43
44
45
'use strict';
const {
Model
} = require('sequelize');
module.exports = (sequelize, DataTypes) => {
class Task 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
this.belongsTo(models.User, {foreignKey: "UserId"})
}
};
Task.init({
name: {
type: DataTypes.STRING,
allowNull: false,
validate: {
notNull: {msg: "Task name may not be empty"},
notEmpty: {msg: "Task name may not be empty"}
}
},
deadline: {
type: DataTypes.DATE,
},
category: {
type: DataTypes.STRING,
},
UserId: DataTypes.INTEGER
}, {
hooks:{
beforeValidate: task => {
if (!task.deadline) {task.deadline = null}
if (!task.deadline) {task.deadline = null}
console.log(task.deadline)
}
},
sequelize,
modelName: 'Task',
});
return Task;
};