Browse Source

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

Use postgres supported notifications data column
3.x
Andrew Wallo 3 months ago
parent
commit
8890444537
No account linked to committer's email address

+ 1
- 1
database/migrations/2025_06_15_182955_create_notifications_table.php View File

15
             $table->uuid('id')->primary();
15
             $table->uuid('id')->primary();
16
             $table->string('type');
16
             $table->string('type');
17
             $table->morphs('notifiable');
17
             $table->morphs('notifiable');
18
-            $table->text('data');
18
+            $table->json('data');
19
             $table->timestamp('read_at')->nullable();
19
             $table->timestamp('read_at')->nullable();
20
             $table->timestamps();
20
             $table->timestamps();
21
         });
21
         });

Loading…
Cancel
Save