Large set of changes - building the GUI for the data tracking app.
This commit is contained in:
@@ -15,11 +15,6 @@ module.exports = {
|
||||
type: DataTypes.STRING,
|
||||
allowNull: false
|
||||
},
|
||||
visible: {
|
||||
type: DataTypes.BOOLEAN,
|
||||
allowNull: false,
|
||||
defaultValue: true
|
||||
},
|
||||
createdAt: {
|
||||
type: DataTypes.DATE,
|
||||
allowNull: false
|
||||
@@ -27,9 +22,15 @@ module.exports = {
|
||||
updatedAt: {
|
||||
type: DataTypes.DATE,
|
||||
allowNull: false
|
||||
},
|
||||
deletedAt: {
|
||||
type: DataTypes.DATE,
|
||||
allowNull: true
|
||||
}
|
||||
}, {
|
||||
charset: 'utf8'
|
||||
charset: 'utf8',
|
||||
timestamps: true,
|
||||
paranoid: true
|
||||
});
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user