So our Contentful-based application has grown a little bit and we have to create content migrations for new features etc. And to prevent executing the same migration multiple times we think we must store info about executed migrations - but where?
My choices are:
- External database (
Sql
/NoSql
- doesn't matter which type) - List of executed migration on code repo
- Tagging repo after successful migration? (
migrations/1-blog-post
) - Some other way?
Which do you think would be the best?