pedi2/database/seeds/DatabaseSeeder.php

19 lines
326 B
PHP
Raw Normal View History

2021-12-30 11:49:40 -03:00
<?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
const CHUNK_SIZE = 100;
2021-12-30 11:49:40 -03:00
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
$this->call(UserSeeder::class);
$this->call(GrupoDeCompraSeeder::class);
2021-12-30 11:49:40 -03:00
}
}