vr-migrations 1.0.9 → 1.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -115,6 +115,16 @@ module.exports = {
115
115
  type: Sequelize.DATE,
116
116
  allowNull: true,
117
117
  },
118
+ deletion: {
119
+ type: Sequelize.JSONB,
120
+ allowNull: false,
121
+ defaultValue: {
122
+ deleted: false,
123
+ deletedAt: null,
124
+ deletedBy: null,
125
+ reason: null,
126
+ },
127
+ },
118
128
  createdAt: {
119
129
  type: Sequelize.DATE,
120
130
  allowNull: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vr-migrations",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Database migration and seeding package for VR applications",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",