Files
commander_league_api/database/seeds/DatabaseSeeder.php
Kevin ANATOLE 0691e5a107 Game formats
- Created the formats tables/migrations
- Created the controller to retrieve the formats
2020-10-31 19:23:04 +00:00

20 lines
302 B
PHP

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