increments('id'); $table->integer('company_id')->nullable(); $table->string('company_type', 10)->nullable(); $table->integer('department_id')->nullable(); $table->integer('gang_id')->nullable(); $table->integer('employee_id')->nullable(); $table->string('designation', 50)->nullable(); $table->date('joining_date')->nullable(); $table->text('reason')->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 20)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('resignations'); } }