Parcourir la source

change notification push

Gustavo Zanatta il y a 8 heures
Parent
commit
f160d18e14

+ 29 - 0
database/migrations/2026_08_18_100000_change_push_notifications_enabled_default_on_users_table.php

@@ -0,0 +1,29 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\DB;
+use Illuminate\Support\Facades\Schema;
+
+return new class extends Migration
+{
+    public function up(): void
+    {
+        Schema::table('users', function (Blueprint $table) {
+            $table->boolean('push_notifications_enabled')
+                ->default(true)
+                ->change();
+        });
+
+        DB::table('users')->update(['push_notifications_enabled' => true]);
+    }
+
+    public function down(): void
+    {
+        Schema::table('users', function (Blueprint $table) {
+            $table->boolean('push_notifications_enabled')
+                ->default(false)
+                ->change();
+        });
+    }
+};