Is there some established process to handle schema changes (i.e. user has first name + last name, but now we want to add the 'fullName' attribute for some reason)?
In this example we would need to run a migration job, which iterates over all the existing users, and adds the new field.
But where would we run this job? Are there some guidelines / tips?