1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
sexelleryoga/database/seeds/DatabaseSeeder.php
2020-10-03 16:07:18 +02:00

17 lines
291 B
PHP

<?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$this->call(WordsTableSexSeeder::class);
$this->call(WordsTableYogaSeeder::class);
}
}