add seeders and migrations + rhilip/bencode

This commit is contained in:
xiaomlove
2021-06-08 20:43:47 +08:00
parent 6361f96d62
commit bf49c8c298
135 changed files with 12171 additions and 104 deletions
+28 -1
View File
@@ -13,6 +13,33 @@ class DatabaseSeeder extends Seeder
*/
public function run()
{
// \App\Models\User::factory(10)->create();
$this->call(AdminpanelTableSeeder::class);
$this->call(AgentAllowedExceptionTableSeeder::class);
$this->call(AgentAllowedFamilyTableSeeder::class);
$this->call(AllowedemailsTableSeeder::class);
$this->call(AudiocodecsTableSeeder::class);
$this->call(BannedemailsTableSeeder::class);
$this->call(CategoriesTableSeeder::class);
$this->call(CaticonsTableSeeder::class);
$this->call(CodecsTableSeeder::class);
$this->call(CountriesTableSeeder::class);
$this->call(DownloadspeedTableSeeder::class);
$this->call(FaqTableSeeder::class);
$this->call(IspTableSeeder::class);
$this->call(LanguageTableSeeder::class);
$this->call(MediaTableSeeder::class);
$this->call(ModpanelTableSeeder::class);
$this->call(ProcessingsTableSeeder::class);
$this->call(RulesTableSeeder::class);
$this->call(SchoolsTableSeeder::class);
$this->call(SearchboxTableSeeder::class);
$this->call(SecondiconsTableSeeder::class);
$this->call(SourcesTableSeeder::class);
$this->call(StandardsTableSeeder::class);
$this->call(StylesheetsTableSeeder::class);
$this->call(SysoppanelTableSeeder::class);
$this->call(TeamsTableSeeder::class);
$this->call(TorrentsStateTableSeeder::class);
$this->call(UploadspeedTableSeeder::class);
}
}