Files
newznab-tmux/database/seeds/DatabaseSeeder.php
T
2018-01-20 19:53:51 +01:00

29 lines
937 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(UserRolesTableSeeder::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(MenuTableSeeder::class);
$this->call(ReleaseNamingRegexesTableSeeder::class);
$this->call(SettingsTableSeeder::class);
$this->call(TmuxTableSeeder::class);
}
}