Changeset b39afb5 for database


Ignore:
Timestamp:
10/23/21 17:48:25 (3 years ago)
Author:
beratkjufliju <kufliju@…>
Branches:
develop, master
Children:
a8346eb
Parents:
4b7e2d3
Message:

minor bug fixes

Location:
database
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • database/migrations/2021_09_29_121244_create_departments_table.php

    r4b7e2d3 rb39afb5  
    1717            $table->increments('id');
    1818            $table->string("name");
    19             $table->string("code");
     19            $table->integer("code");
    2020            $table->integer("user_id")->unsigned();
    2121            $table->string("location");
  • database/seeders/DatabaseSeeder.php

    r4b7e2d3 rb39afb5  
    2121        $this->call(FileTypesTableSeeder::class);
    2222        $this->call(FoldersTableSeeder::class);
    23         $this->call(FilesTableSeeder::class);
     23        //$this->call(FilesTableSeeder::class);
    2424    }
    2525}
Note: See TracChangeset for help on using the changeset viewer.