Hello,
We want to have three databases that have the same schema, something like development
, staging
, and production
for databases.
Editors would add/edit new entries in the development database, entries are then moved to the staging database for QA and if it gets the green light, pushed to the production database.
I’m thinking of establishing a data model (a set of collections) once and then replicate that to three databases. Editing that data model would push the modified structure on all three databases.
Is there a way to do this? Or maybe another way to achieve the desired use case?
Thank you!