このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
kikikan/backend/database/seeders/DatabaseSeeder.php

42 行
936 B
PHP
Raw 通常表示 履歴

2021-08-03 15:34:15 +09:00
<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
$this->call
(AdminsTableSeeder::class);
$this->call
(FathersTableSeeder::class);
$this->call
(EmailActivationsTableSeeder::class);
$this->call
(ChildrenTableSeeder::class);
$this->call
(TelActivationsTableSeeder::class);
$this->call
(FatherRelationsTableSeeder::class);
$this->call
(MeetingsTableSeeder::class);
$this->call
(MeetingImagesTableSeeder::class);
$this->call
2021-09-29 12:43:36 +09:00
(MeetingApprovalsSeeder::class);
$this->call
(LoginLimitsSeeder::class);
$this->call
(ContactsSeeder::class);
$this->call
(SmssSeeder::class);
2021-08-03 15:34:15 +09:00
}
}