- Timestamp:
- 10/24/21 00:35:13 (3 years ago)
- Branches:
- develop, master
- Children:
- 0208bbd
- Parents:
- 2db8837
- Location:
- database
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
database/factories/DepartmentFactory.php
r2db8837 r5e56e8a 8 8 use Illuminate\Database\Eloquent\Factories\Factory; 9 9 use Illuminate\Support\Facades\Storage; 10 use phpDocumentor\Reflection\Types\Integer; 10 11 use function Sodium\increment; 11 12 -
database/migrations/2021_09_27_171104_create_roles_table.php
r2db8837 r5e56e8a 15 15 { 16 16 Schema::create('roles', function (Blueprint $table) { 17 $table->increments('id') ;17 $table->increments('id')->startingValue(1); 18 18 $table->string('name'); 19 19 }); -
database/migrations/2021_09_27_171105_create_permissions_table.php
r2db8837 r5e56e8a 15 15 { 16 16 Schema::create('permissions', function (Blueprint $table) { 17 $table->increments('id') ;17 $table->increments('id')->startingValue(1); 18 18 $table->string("name"); 19 19 }); -
database/migrations/2021_09_27_171107_create_users_table.php
r2db8837 r5e56e8a 16 16 { 17 17 Schema::create('users', function (Blueprint $table) { 18 $table->increments('id') ;18 $table->increments('id')->startingValue(1); 19 19 $table->string('name'); 20 20 $table->string('surname'); -
database/migrations/2021_09_29_121244_create_departments_table.php
r2db8837 r5e56e8a 15 15 { 16 16 Schema::create('departments', function (Blueprint $table) { 17 $table->increments('id') ;17 $table->increments('id')->startingValue(1); 18 18 $table->string("name"); 19 19 $table->integer("code"); -
database/migrations/2021_10_06_103305_create_folders_table.php
r2db8837 r5e56e8a 15 15 { 16 16 Schema::create('folders', function (Blueprint $table) { 17 $table->bigIncrements('id') ;17 $table->bigIncrements('id')->startingValue(1); 18 18 $table->string("arch_id")->unique(); 19 19 $table->string("name"); -
database/migrations/2021_10_21_144552_create_file_types_table.php
r2db8837 r5e56e8a 15 15 { 16 16 Schema::create('file_types', function (Blueprint $table) { 17 $table->increments('id') ;17 $table->increments('id')->startingValue(1); 18 18 $table->string("mimes")->default('jpg,jpeg,png,pdf,docx,xls,xlsx,txt,ppt,pptx'); 19 19 $table->integer("max_size");
Note:
See TracChangeset
for help on using the changeset viewer.