increments('id'); $table->string('name', 255)->nullable(); $table->string('designation', 255)->nullable(); $table->string('address', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('profiles'); } }