pedi2/database/seeds/DatabaseSeeder.php

19 lines
327 B
PHP
Raw Normal View History

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