Rename meteor accounts loginServiceConfiguration collection

Is there a way to rename meteor_accounts_loginServiceConfiguration collection?
This is kind of an eyesore in all my databases :smile:

image

I think it’s possible. It’s in the package service-configuration you can make it as local package, change the collection name, install it manually.

2 Likes

@rijk Did you ever find a good way to change the name of the loginServiceConfiguration collection without having to fork the package and install it locally? That seems like way too much overheard for simply changing the name. I’ve tried the below early in server init, but it doesn’t work:

ServiceConfiguration.configurations = new Mongo.Collection(
    'custom_name', {
        _preventAutopublish: true,
        connection: Meteor.connection,
    }
);

No, I had to fork the package

1 Like

Dang. Have you had any issues with the package needing to be upgraded (i.e., after a Meteor or Accounts upgrade), and having to re-fork it?