dootask/database/seeders/DatabaseSeeder.php
2021-07-01 19:05:33 +08:00

35 lines
1.1 KiB
PHP

<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
$this->call(FileContentsTableSeeder::class);
$this->call(FilesTableSeeder::class);
$this->call(ProjectColumnsTableSeeder::class);
$this->call(ProjectLogsTableSeeder::class);
$this->call(ProjectTaskContentsTableSeeder::class);
$this->call(ProjectTaskUsersTableSeeder::class);
$this->call(ProjectTasksTableSeeder::class);
$this->call(ProjectUsersTableSeeder::class);
$this->call(ProjectsTableSeeder::class);
$this->call(SettingsTableSeeder::class);
$this->call(UsersTableSeeder::class);
$this->call(WebSocketDialogMsgReadsTableSeeder::class);
$this->call(WebSocketDialogMsgsTableSeeder::class);
$this->call(WebSocketDialogUsersTableSeeder::class);
$this->call(WebSocketDialogsTableSeeder::class);
$this->call(WebSocketsTableSeeder::class);
}
}