increments('id'); $table->string('name', 255)->nullable(); $table->string('email', 255)->nullable(); $table->integer('mobile')->nullable(); $table->string('message', 255)->nullable(); $table->text('resume')->nullable(); $table->string('image', 255)->nullable(); $table->integer('job_id')->nullable(); $table->string('slug', 255)->nullable(); $table->enum('published', ['Yes','No'])->nullable(); $table->enum('status', ['draft','published','hidden','suspended','spam'])->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 255)->nullable(); $table->string('uploaded_folder', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('resumes'); } }