@kipicore/dbcore 1.1.220 → 1.1.221
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.
|
@@ -116,10 +116,10 @@ const up = async (queryInterface, Sequelize) => {
|
|
|
116
116
|
allowNull: true,
|
|
117
117
|
field: 'deleted_by',
|
|
118
118
|
},
|
|
119
|
-
|
|
119
|
+
paymentMethod: {
|
|
120
120
|
type: Sequelize.ARRAY(Sequelize.STRING),
|
|
121
121
|
allowNull: true,
|
|
122
|
-
field: '
|
|
122
|
+
field: 'payment_method',
|
|
123
123
|
defaultValue: [],
|
|
124
124
|
},
|
|
125
125
|
});
|
|
@@ -159,10 +159,10 @@ const up = async (queryInterface, Sequelize) => {
|
|
|
159
159
|
allowNull: true,
|
|
160
160
|
field: 'deleted_by',
|
|
161
161
|
},
|
|
162
|
-
|
|
162
|
+
paymentMethod: {
|
|
163
163
|
type: Sequelize.ARRAY(Sequelize.STRING),
|
|
164
164
|
allowNull: true,
|
|
165
|
-
field: '
|
|
165
|
+
field: 'payment_method',
|
|
166
166
|
defaultValue: [],
|
|
167
167
|
},
|
|
168
168
|
};
|
|
@@ -11,7 +11,7 @@ declare class FeeType1Model extends Model<IFeeType1ModelAttributes, TFeeType1Mod
|
|
|
11
11
|
module: COMMAN_STATUS;
|
|
12
12
|
status: COMMAN_STATUS;
|
|
13
13
|
account: string[];
|
|
14
|
-
|
|
14
|
+
paymentMethod: string[];
|
|
15
15
|
isDefault: BOOLEAN_STATUS;
|
|
16
16
|
academicCalendarId: string;
|
|
17
17
|
isCreditAllowed: boolean;
|
|
@@ -133,9 +133,10 @@ FeeType1Model.init({
|
|
|
133
133
|
field: 'academic_calendar_id',
|
|
134
134
|
allowNull: true,
|
|
135
135
|
},
|
|
136
|
-
|
|
136
|
+
paymentMethod: {
|
|
137
137
|
type: sequelize_1.DataTypes.ARRAY(sequelize_1.DataTypes.STRING),
|
|
138
138
|
allowNull: true,
|
|
139
|
+
field: 'payment_method',
|
|
139
140
|
defaultValue: [],
|
|
140
141
|
},
|
|
141
142
|
}, {
|
package/package.json
CHANGED