increments('id'); $table->string('name', 100)->nullable(); $table->integer('department_id')->nullable(); $table->integer('manager_id')->nullable(); $table->string('slug', 100)->nullable(); $table->integer('user_id')->nullable(); $table->string('upload_folder', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('department_managments'); } }