ratings.js
835 Bytes
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
'use strict';
const {
Model
} = require('sequelize');
module.exports = (sequelize, DataTypes) => {
class ratings 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
}
};
ratings.init({
id: {
allowNull: false,
autoIncrement: true,
primaryKey: true,
type: DataTypes.INTEGER
},
user_id: {
allowNull: false,
type:DataTypes.INTEGER,
},
movie_id:{
allowNull: false,
type:DataTypes.INTEGER,
},
rating: {
allowNull: false,
type:DataTypes.FLOAT,
},
}, {
sequelize,
modelName: 'ratings',
});
return ratings;
};