Last change
on this file was 94f05dc, checked in by beratkjufliju <kufliju@…>, 3 years ago |
bug fixes
|
-
Property mode
set to
100644
|
File size:
629 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | namespace Database\Seeders;
|
---|
4 |
|
---|
5 | use Illuminate\Database\Seeder;
|
---|
6 |
|
---|
7 | class DatabaseSeeder extends Seeder
|
---|
8 | {
|
---|
9 | /**
|
---|
10 | * Seed the application's database.
|
---|
11 | *
|
---|
12 | * @return void
|
---|
13 | */
|
---|
14 | public function run()
|
---|
15 | {
|
---|
16 | $this->call(RolesTableSeeder::class);
|
---|
17 | $this->call(PermissionsTableSeeder::class);
|
---|
18 | $this->call(RolesPermissionsTableSeeder::class);
|
---|
19 | $this->call(UsersTableSeeder::class);
|
---|
20 | $this->call(DepartmentsTableSeeder::class);
|
---|
21 | $this->call(FileTypesTableSeeder::class);
|
---|
22 | $this->call(FoldersTableSeeder::class);
|
---|
23 | //$this->call(FilesTableSeeder::class);
|
---|
24 | }
|
---|
25 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.