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

46 行
1.3 KiB
PHP

<?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder {
public function run () {
// BBS
// $this->call(BbsCategorySeeder::class);
// $this->call(BbsPostSeeder::class);
// $this->call(BbsThreadSeeder::class);
// 国々
$this->call(CountrySeeder::class);
// ホーム
$this->call(HomeCommentSeeder::class);
$this->call(HomePageSeeder::class);
$this->call(HomePostSeeder::class);
// ホスティング
// $this->call(HostingImageSeeder::class);
// $this->call(HostingVpsSeeder::class);
// 請求
// 日本
$this->call(JapanCitySeeder::class);
$this->call(JapanCityWardSeeder::class);
$this->call(JapanEraSeeder::class);
$this->call(JapanHolidaySeeder::class);
$this->call(JapanIslandSeeder::class);
$this->call(JapanPrefectureSeeder::class);
$this->call(JapanRegionSeeder::class);
// 動画
$this->call(VideoCategorySeeder::class);
$this->call(VideoCommentsSeeder::class);
$this->call(VideoPeertubeCommentSeeder::class);
$this->call(VideoUploadsSeeder::class);
$this->call(VideoYoutubeCommentSeeder::class);
// ユーザー
$this->call(UserSeeder::class);
}
}