Run Seed from Migration?

Hi all,

Is there any way to run data Seed from database structure Migrations?
My goal is having several migration for newer version of application, and some data for types, statuses, dropdown menu seeded as well without have to run a batch Seed manually.
If that is posible, migration would be an automation process.

Thank you very much

$migrations = new \Migrations\Migrations();
$migrations->seed(['seed' => 'TypesSeed']);

etc.

1 Like

Thank you Zuluru,

I supposed that If I want to run multiple seeds, I only need to point seed to an array , right?

$migrations = new \Migrations\Migrations();
$migrations->seed(['seed' => ['TypesSeed', 'StatusesSeed', 'AnotherTypesSeed']]);

Thank you