2017-07-12 01:55:03 +02:00
|
|
|
module.exports = (sequelize, { STRING, BOOLEAN, TEXT }) => {
|
2017-07-13 00:30:31 +02:00
|
|
|
const Request = sequelize.define(
|
|
|
|
'Request',
|
2017-06-28 00:53:53 +02:00
|
|
|
{
|
|
|
|
action: {
|
|
|
|
type : STRING,
|
|
|
|
allowNull: false,
|
|
|
|
},
|
|
|
|
url: {
|
|
|
|
type : STRING,
|
|
|
|
allowNull: false,
|
|
|
|
},
|
|
|
|
ipAddress: {
|
|
|
|
type : STRING,
|
|
|
|
allowNull: true,
|
|
|
|
},
|
|
|
|
result: {
|
2017-06-28 07:04:15 +02:00
|
|
|
type : TEXT('long'),
|
2017-06-28 06:32:05 +02:00
|
|
|
allowNull: true,
|
|
|
|
default : null,
|
2017-06-28 00:53:53 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
freezeTableName: true,
|
|
|
|
}
|
|
|
|
);
|
2017-07-13 00:30:31 +02:00
|
|
|
|
|
|
|
Request.associate = db => {
|
|
|
|
Request.belongsTo(db.File, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return Request;
|
2017-06-28 00:53:53 +02:00
|
|
|
};
|