increments('id'); $table->string('title', 255)->nullable(); $table->integer('country_id')->nullable(); $table->integer('state_id')->nullable(); $table->integer('district_id')->nullable(); $table->integer('city_id')->nullable(); $table->string('location', 250)->nullable(); $table->string('schedule', 60)->nullable(); $table->longText('responsibilities')->nullable(); $table->longText('desired_candidate_profile')->nullable(); $table->enum('status', [])->nullable(); $table->string('slug', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('jobs'); } }