boolean('show_personal_details')->default(1)->change(); $table->boolean('notification')->default(1)->change(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('users', function (Blueprint $table) { $table->boolean('show_personal_details')->default(0); $table->boolean('notification')->default(0); }); } };