increments('id'); $table->string('title', 255)->nullable(); $table->text('description')->nullable(); $table->string('type', 50)->nullable(); $table->string('location', 50)->nullable(); $table->text('responsibilities')->nullable(); $table->text('qualifications')->nullable(); $table->text('benefits')->nullable(); $table->string('slug', 255)->nullable(); $table->string('salary', 50)->nullable(); $table->integer('creator_id')->nullable(); $table->integer('expired_at')->nullable(); $table->integer('started_at')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('career_jobs'); } }