Andrew Wallo 3 달 전
부모
커밋
c6a59b7538
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      database/migrations/2025_06_15_182955_create_notifications_table.php

+ 1
- 1
database/migrations/2025_06_15_182955_create_notifications_table.php 파일 보기

@@ -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
         });

Loading…
취소
저장