meteor-roles icon indicating copy to clipboard operation
meteor-roles copied to clipboard

How to run migration script from V1 -> V3

Open jdipallo opened this issue 3 years ago • 5 comments

Hello:

We have upgraded an old Meteor JS project (1.3.2.4) to current. This project was using V1 of alaning roles.

Question 1) How can we upgrade from V1 -> V3 2) The documentation to migrate from V1 -> V2 and V2 -> V3 specifies the meteor shell. We don't have Meteor installed in Production therefore no Meteor shell.

As we are barely using Roles, (very simply there are admin's and that's about it), I've examined the roles collection and role-assignment join collection. In my local dev env, I have simply dropped the roles collection, recreated it like the alaning docs specify and then created the role-assignment collection pointing to the userID and corresponding role. This seems to have setup things where everything works. am I missing anything else or any other ideas to assist is running this migration script? And, where can i see the code for this migration script?

Thank you kindly

jdipallo avatar Nov 02 '22 15:11 jdipallo

In the past all I have done was run these methods listed here, one after the other in a migration not the shell:

https://github.com/Meteor-Community-Packages/meteor-roles#roles-migration

Roles._forwardMigrate2()
Roles._forwardMigrate3()

They should be available globally I think.

You can use a database migration tool like this one:

https://packosphere.com/percolate/migrations/0.8.6

Hope it helps.

leonardoventurini avatar Nov 03 '22 01:11 leonardoventurini

@jdipallo did @leonardoventurini solution work for you?

StorytellerCZ avatar Nov 17 '22 14:11 StorytellerCZ

@StorytellerCZ Hello. No, that solution didn’t work for me. Simply manually modifying as I described seems to work thus far. thanks

jdipallo avatar Nov 27 '22 15:11 jdipallo