- Timestamp:
- 10/23/21 17:48:25 (3 years ago)
- Branches:
- develop, master
- Children:
- a8346eb
- Parents:
- 4b7e2d3
- Location:
- database
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
database/migrations/2021_09_29_121244_create_departments_table.php
r4b7e2d3 rb39afb5 17 17 $table->increments('id'); 18 18 $table->string("name"); 19 $table-> string("code");19 $table->integer("code"); 20 20 $table->integer("user_id")->unsigned(); 21 21 $table->string("location"); -
database/seeders/DatabaseSeeder.php
r4b7e2d3 rb39afb5 21 21 $this->call(FileTypesTableSeeder::class); 22 22 $this->call(FoldersTableSeeder::class); 23 $this->call(FilesTableSeeder::class);23 //$this->call(FilesTableSeeder::class); 24 24 } 25 25 }
Note:
See TracChangeset
for help on using the changeset viewer.