softDeletes(); $table->string('website')->nullable(); $table->string('country')->nullable(); $table->string('gravatar')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { // Update the users table Schema::table('users', function ($table) { $table->dropColumn('deleted_at', 'website', 'country', 'gravatar'); }); } }