History: Add record history table

This commit is contained in:
2022-09-14 18:24:10 +02:00
parent 1d4ec09bf8
commit 826834ebab
2 changed files with 70 additions and 0 deletions

28
models/recordhistory.js Normal file
View File

@@ -0,0 +1,28 @@
'use strict';
const {
Model
} = require('sequelize');
module.exports = (sequelize, DataTypes) => {
class RecordHistory 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
}
}
RecordHistory.init({
affectedId: DataTypes.INTEGER,
userId: DataTypes.INTEGER,
type: DataTypes.STRING,
property: DataTypes.STRING,
newValue: DataTypes.TEXT,
oldValue: DataTypes.TEXT
}, {
sequelize,
modelName: 'RecordHistory',
});
return RecordHistory;
};