mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-01 20:54:03 +01:00
21 lines
361 B
PHP
21 lines
361 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Database\Seeder;
|
||
|
|
||
|
class DatabaseSeeder extends Seeder
|
||
|
{
|
||
|
/**
|
||
|
* Seed the application's database.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function run()
|
||
|
{
|
||
|
// $this->call(UsersTableSeeder::class);
|
||
|
$this->call([
|
||
|
UsersTableSeeder::class,
|
||
|
AccountsTableSeeder::class,
|
||
|
]);
|
||
|
}
|
||
|
}
|