I want to separate the test data (can differ per environment) from the actual database creation.
I know you can use profiles for that purpose, but the way I understand it, you call them once at the end of the other migrations.
What I want, is to have them based on migration versions, so:
- Migration X creates table 'Users'
- Test data is inserted into 'Users' separately
How would I go about doing that?