mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-29 11:43:26 +01:00
21 lines
365 B
PHP
21 lines
365 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,
|
|
TwoFAccountsTableSeeder::class,
|
|
]);
|
|
}
|
|
}
|