cloud-ide-model-schema 1.1.123 → 1.1.124
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.
|
@@ -992,8 +992,7 @@ var admission_application_main = new mongoose_1.Schema({
|
|
|
992
992
|
timestamps: true
|
|
993
993
|
});
|
|
994
994
|
// Indexes for performance
|
|
995
|
-
|
|
996
|
-
admission_application_main.index({ admap_student_id: 1 });
|
|
995
|
+
// Note: admap_application_number and admap_student_id indexes are automatically created by unique: true, so we don't need to add them explicitly
|
|
997
996
|
admission_application_main.index({ admap_entity_id_syen: 1 });
|
|
998
997
|
admission_application_main.index({ admap_application_status_id_sygms: 1 });
|
|
999
998
|
admission_application_main.index({ admap_status_id_sygms: 1 });
|
|
@@ -103,8 +103,7 @@ var core_entity_udise = new mongoose_1.Schema({
|
|
|
103
103
|
timestamps: true
|
|
104
104
|
});
|
|
105
105
|
// Indexes for performance
|
|
106
|
-
|
|
107
|
-
core_entity_udise.index({ syudise_code: 1 });
|
|
106
|
+
// Note: syudise_entity_id_syen and syudise_code indexes are automatically created by unique: true, so we don't need to add them explicitly
|
|
108
107
|
core_entity_udise.index({ syudise_verified: 1 });
|
|
109
108
|
core_entity_udise.index({ syudise_state_code: 1 });
|
|
110
109
|
core_entity_udise.index({ syudise_district_code: 1 });
|
|
@@ -91,10 +91,10 @@ var core_system_nationality = new mongoose_1.Schema({
|
|
|
91
91
|
timestamps: true
|
|
92
92
|
});
|
|
93
93
|
// Indexes for better query performance
|
|
94
|
+
// Note: synat_nationality_code index is automatically created by unique: true, so we don't need to add it explicitly
|
|
94
95
|
core_system_nationality.index({ synat_country_id_syctr: 1 });
|
|
95
96
|
core_system_nationality.index({ synat_is_group: 1 });
|
|
96
97
|
core_system_nationality.index({ synat_parent_nationality_id_synat: 1 });
|
|
97
98
|
core_system_nationality.index({ synat_isactive: 1 });
|
|
98
|
-
core_system_nationality.index({ synat_nationality_code: 1 });
|
|
99
99
|
var CCoreSynat = mongoose_1.default.model("core_system_nationality", core_system_nationality);
|
|
100
100
|
exports.CCoreSynat = CCoreSynat;
|
package/package.json
CHANGED