mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
29 lines
854 B
PHP
29 lines
854 B
PHP
<?php
|
|
|
|
use Bhuvidya\Countries\CountriesSeeder;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
// $this->call(UsersTableSeeder::class);
|
|
$this->call(CountriesSeeder::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);
|
|
}
|
|
}
|