All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scripts.1.9.0.2-remove-old-attributes.js Maven / Gradle / Ivy

The newest version!
// remove group type
print("\n\n remove type attribute for all groups");
db.groups.update(
  {},
  {$unset: {type: ""}},
  {multi: true}
);
print("Done!");

print("\n\nRemove old type in Membership collection");
db.memberships.update(
  {},
  {$unset: {type: ""}},
  {multi: true}
);
print("Done!");

print("\n\nRemove old group in API collection");
db.apis.update(
  {},
  {$unset: {group: ""}},
  {multi: true}
);
print("Done!");

print("\n\nRemove old group in Application collection");
db.applications.update(
  {},
  {$unset: {group: ""}},
  {multi: true}
);
print("Done!");




© 2015 - 2024 Weber Informatics LLC | Privacy Policy