mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 03:01:34 +00:00
31 lines
971 B
PHP
31 lines
971 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Bhuvidya\Countries\CountriesSeeder;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeders.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
// $this->call(UsersTableSeeder::class);
|
|
// \App\Models\User::factory(10)->create();
|
|
$this->call(CountriesSeeder::class);
|
|
$this->call(RootCategoriesTableSeeder::class);
|
|
$this->call(CategoriesTableSeeder::class);
|
|
$this->call(CategoryRegexesTableSeeder::class);
|
|
$this->call(CollectionRegexesTableSeeder::class);
|
|
$this->call(BinaryblacklistTableSeeder::class);
|
|
$this->call(ContentTableSeeder::class);
|
|
$this->call(GenresTableSeeder::class);
|
|
$this->call(GroupsTableSeeder::class);
|
|
$this->call(ReleaseNamingRegexesTableSeeder::class);
|
|
$this->call(SettingsTableSeeder::class);
|
|
$this->call(RolesAndPermissionsSeeder::class);
|
|
}
|
|
}
|