Updates to the data tracking app; Updated the VAP list.

This commit is contained in:
Wynne Crisman
2016-11-05 18:02:35 -07:00
parent 654a2cc615
commit 46ef9680c3
31 changed files with 8447 additions and 7249 deletions

View File

@@ -15,7 +15,7 @@ module.exports = {
type: DataTypes.DATEONLY,
allowNull: false
},
quantity: {
amount: {
type: DataTypes.DECIMAL(13,2),
allowNull: false
},
@@ -58,15 +58,11 @@ module.exports = {
updatedAt: {
type: DataTypes.DATE,
allowNull: false
},
deletedAt: {
type: DataTypes.DATE,
allowNull: true
}
}, {
charset: 'utf8',
timestamps: true,
paranoid: true
paranoid: false
});
},