mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 20:44:13 +00:00
0cf92b9936
removed droptable due to database contraints issue fixed rename booking foreight key in po table issue added supplierstable seeder updated supplierreport frontend updated upload po frontend
24 lines
570 B
PHP
24 lines
570 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->call(UsersTableSeeder::class);
|
|
$this->call(RolesAndPermissionsSeeder::class);
|
|
$this->call(UserRoleSeeder::class);
|
|
$this->call(RateTableSeeder::class);
|
|
$this->call(BookTableSeeder::class);
|
|
$this->call(SettingCreditSeeder::class);
|
|
$this->call(SuppliersTableSeeder::class);
|
|
}
|
|
}
|