Capitalized contacts and address fields in M1 + M2.

This commit is contained in:
K 2024-11-08 17:11:32 +05:30
parent 56dc7b5ea1
commit 24924e124c
Signed by: notkshitij
GPG Key ID: C5B8BC7530F8F43F
2 changed files with 12 additions and 12 deletions

View File

@ -51,8 +51,8 @@ db.Employee.insertMany([
Expertise: ['Docker', 'Linux', 'Networking', 'Politics'], Expertise: ['Docker', 'Linux', 'Networking', 'Politics'],
DOB: new Date("1969-03-12"), DOB: new Date("1969-03-12"),
Email: "ayush.k@tcs.com", Email: "ayush.k@tcs.com",
contact: 9972410427, Contact: 9972410427,
address: [{PAddr: "Kokan, Maharashtra"}, {LAddr: "Lohegaon, Pune"}] Address: [{PAddr: "Kokan, Maharashtra"}, {LAddr: "Lohegaon, Pune"}]
}, },
{ {
Name: {FName: "Mehul", LName: "Patil"}, Name: {FName: "Mehul", LName: "Patil"},
@ -63,8 +63,8 @@ db.Employee.insertMany([
Expertise: ['HTML', 'CSS', 'Javascript', 'Teaching'], Expertise: ['HTML', 'CSS', 'Javascript', 'Teaching'],
DOB: new Date("1964-06-22"), DOB: new Date("1964-06-22"),
Email: "mehul.p@mepa.com", Email: "mehul.p@mepa.com",
contact: 9972410426, Contact: 9972410426,
address: [{PAddr: "NDB, Maharashtra"}, {LAddr: "Camp, Pune"}] Address: [{PAddr: "NDB, Maharashtra"}, {LAddr: "Camp, Pune"}]
}, },
{ {
Name: {FName: "Himanshu", LName: "Patil"}, Name: {FName: "Himanshu", LName: "Patil"},
@ -75,8 +75,8 @@ db.Employee.insertMany([
Expertise: ['Mongodb', 'Mysql', 'Cassandra', 'Farming'], Expertise: ['Mongodb', 'Mysql', 'Cassandra', 'Farming'],
DOB: new Date("1957-04-28"), DOB: new Date("1957-04-28"),
Email: "himanshu.p@infosys.com", Email: "himanshu.p@infosys.com",
contact: 9972410425, Contact: 9972410425,
address: [{PAddr: "NDB, Maharashtra"}, {LAddr: "Camp, Pune"}] Address: [{PAddr: "NDB, Maharashtra"}, {LAddr: "Camp, Pune"}]
} }
]) ])

View File

@ -51,8 +51,8 @@ db.Employee.insertMany([
Expertise: ['Docker', 'Linux', 'Networking', 'Politics'], Expertise: ['Docker', 'Linux', 'Networking', 'Politics'],
DOB: new Date("1998-03-12"), DOB: new Date("1998-03-12"),
Email: "ayush.k@tcs.com", Email: "ayush.k@tcs.com",
contact: 9972410427, Contact: 9972410427,
address: [{PAddr: "Kokan, Maharashtra"}, {LAddr: "Lohegaon, Pune"}] Address: [{PAddr: "Kokan, Maharashtra"}, {LAddr: "Lohegaon, Pune"}]
}, },
{ {
Name: {FName: "Mehul", LName: "Patil"}, Name: {FName: "Mehul", LName: "Patil"},
@ -63,8 +63,8 @@ db.Employee.insertMany([
Expertise: ['HTML', 'CSS', 'Javascript', 'Teaching'], Expertise: ['HTML', 'CSS', 'Javascript', 'Teaching'],
DOB: new Date("1964-06-22"), DOB: new Date("1964-06-22"),
Email: "mehul.p@mepa.com", Email: "mehul.p@mepa.com",
contact: 9972410426, Contact: 9972410426,
address: [{PAddr: "NDB, Maharashtra"}, {LAddr: "Camp, Pune"}] Address: [{PAddr: "NDB, Maharashtra"}, {LAddr: "Camp, Pune"}]
}, },
{ {
Name: {FName: "Himanshu", LName: "Patil"}, Name: {FName: "Himanshu", LName: "Patil"},
@ -75,8 +75,8 @@ db.Employee.insertMany([
Expertise: ['Mongodb', 'Mysql', 'Cassandra', 'Farming'], Expertise: ['Mongodb', 'Mysql', 'Cassandra', 'Farming'],
DOB: new Date("1957-04-28"), DOB: new Date("1957-04-28"),
Email: "himanshu.p@infosys.com", Email: "himanshu.p@infosys.com",
contact: 9972410425, Contact: 9972410425,
address: [{PAddr: "NDB, Maharashtra"}, {LAddr: "Camp, Pune"}] Address: [{PAddr: "NDB, Maharashtra"}, {LAddr: "Camp, Pune"}]
} }
]) ])