increments('id'); $table->string('name', 50)->nullable(); $table->string('slug', 200)->nullable(); $table->string('description', 250)->nullable(); $table->text('requirement')->nullable(); $table->enum('status', ['draft','published','suspended'])->nullable(); $table->date('closing_date')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('career_jobs'); } }