timestamp('delete_after')->nullable(); }); Schema::table('users', function (Blueprint $table) { $table->timestamp('delete_after')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('profiles', function (Blueprint $table) { $table->dropColumn('delete_after'); }); Schema::table('users', function (Blueprint $table) { $table->dropColumn('delete_after'); }); } }