Quellcode durchsuchen

Merge pull request #186 from andrewdwallo/development-3.x

Use postgres supported notifications data column
3.x
Andrew Wallo vor 3 Monaten
Ursprung
Commit
8890444537
Es ist kein Account mit der E-Mail-Adresse des Committers verbunden

+ 1
- 1
database/migrations/2025_06_15_182955_create_notifications_table.php Datei anzeigen

@@ -15,7 +15,7 @@ return new class extends Migration
15 15
             $table->uuid('id')->primary();
16 16
             $table->string('type');
17 17
             $table->morphs('notifiable');
18
-            $table->text('data');
18
+            $table->json('data');
19 19
             $table->timestamp('read_at')->nullable();
20 20
             $table->timestamps();
21 21
         });

Laden…
Abbrechen
Speichern