@kipicore/dbcore 1.1.420 → 1.1.421
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.
|
@@ -30,9 +30,8 @@ const up = async (queryInterface, Sequelize) => {
|
|
|
30
30
|
allowNull: true,
|
|
31
31
|
},
|
|
32
32
|
callType: {
|
|
33
|
-
type: Sequelize.
|
|
33
|
+
type: Sequelize.STRING,
|
|
34
34
|
allowNull: true,
|
|
35
|
-
values: Object.values(CALL_TYPE),
|
|
36
35
|
},
|
|
37
36
|
instituteId: {
|
|
38
37
|
type: Sequelize.UUID,
|
|
@@ -102,9 +101,8 @@ const up = async (queryInterface, Sequelize) => {
|
|
|
102
101
|
allowNull: true,
|
|
103
102
|
},
|
|
104
103
|
callType: {
|
|
105
|
-
type: Sequelize.
|
|
104
|
+
type: Sequelize.STRING,
|
|
106
105
|
allowNull: true,
|
|
107
|
-
values: Object.values(CALL_TYPE),
|
|
108
106
|
},
|
|
109
107
|
instituteId: {
|
|
110
108
|
type: Sequelize.UUID,
|
|
@@ -30,9 +30,8 @@ const up = async (queryInterface, Sequelize) => {
|
|
|
30
30
|
allowNull: true,
|
|
31
31
|
},
|
|
32
32
|
status: {
|
|
33
|
-
type: Sequelize.
|
|
33
|
+
type: Sequelize.STRING,
|
|
34
34
|
allowNull: true,
|
|
35
|
-
values: Object.values(POSTAL_DISPATCH_STATUS),
|
|
36
35
|
},
|
|
37
36
|
instituteId: {
|
|
38
37
|
type: Sequelize.UUID,
|
|
@@ -102,9 +101,8 @@ const up = async (queryInterface, Sequelize) => {
|
|
|
102
101
|
allowNull: true,
|
|
103
102
|
},
|
|
104
103
|
callType: {
|
|
105
|
-
type: Sequelize.
|
|
104
|
+
type: Sequelize.STRING,
|
|
106
105
|
allowNull: true,
|
|
107
|
-
values: Object.values(CALL_TYPE),
|
|
108
106
|
},
|
|
109
107
|
instituteId: {
|
|
110
108
|
type: Sequelize.UUID,
|
package/package.json
CHANGED