boolean('is_notification_realtime_enabled')->default(true); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('users', function (Blueprint $table) { $table->dropColumn('is_notification_realtime_enabled'); }); } };