I'm writing a set of Phinx migrations that install an application database and insert the seeds. My first 4 migration files build the database schema (with foreign key constraints), triggers, functions, and stored procedures respectively. I'd like to use a 5th migration file to execute all of the seeds so that every migration file thereafter will have seed data to work with.
I'd like an example of running all of the application seeds FROM INSIDE the up method of a Phinx migration file.