dbfdg id(); $table->integer('application'); $table->date('joining_date')->nullable(); $table->string('status')->nullable(); $table->integer('convert_to_employee')->default(0); $table->string('job_type')->nullable(); $table->integer('days_of_week')->nullable(); $table->integer('salary')->nullable(); $table->string('salary_type')->nullable(); $table->string('salary_duration')->nullable(); $table->integer('created_by'); $table->timestamps(); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('job_on_boards'); } }