Files
UNIT3D-Community-Edition/database/seeds/DatabaseSeeder.php
2018-05-04 16:09:08 -04:00

39 lines
1.1 KiB
PHP
Executable File

<?php
/**
* NOTICE OF LICENSE
*
* UNIT3D is open-sourced software licensed under the GNU General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
* @author HDVinnie
*/
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$this->call(GroupsTableSeeder::class);
$this->call(UsersTableSeeder::class);
$this->call(BonExchangeTableSeeder::class);
$this->call(AchievementDetailsTableSeeder::class);
$this->call(PagesTableSeeder::class);
$this->call(CategoriesTableSeeder::class);
$this->call(TypesTableSeeder::class);
$this->call(ArticlesTableSeeder::class);
$this->call(PermissionsTableSeeder::class);
$this->call(ForumsTableSeeder::class);
$this->call(ChatroomTableSeeder::class);
$this->call(ChatStatusSeeder::class);
}
}