You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you need to seed a module this is how you do it:
Create a class which extends Anomaly\Streams\Platform\Database\Seeder\Seeder in the module directory : module-module/ModuleModuleSeeder.php
You can use this class to handle the seeding directly, or you can use $this->call(FooBarSeeder::class)(where FooBarSeeder can be a class which also extends the Anomaly Seeder specified above and which would reside in your module src directory using for example the following pattern src/Database/Seed/FooBarSeeder.php )
The text was updated successfully, but these errors were encountered:
If you need to seed a module this is how you do it:
Create a class which extends
Anomaly\Streams\Platform\Database\Seeder\Seeder
in the module directory :module
-module/Module
ModuleSeeder.phpYou can use this class to handle the seeding directly, or you can use
$this->call(FooBarSeeder::class)
(whereFooBarSeeder
can be a class which also extends the Anomaly Seeder specified above and which would reside in your module src directory using for example the following patternsrc/Database/Seed/FooBarSeeder.php
)The text was updated successfully, but these errors were encountered: