Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function up() |
||
14 | { |
||
15 | Schema::create('notifications', function (Blueprint $table) { |
||
16 | $table->uuid('id')->primary(); |
||
17 | $table->string('type'); |
||
18 | $table->uuid('notifiable_id'); |
||
19 | $table->string('notifiable_type'); |
||
20 | $table->jsonb('data'); |
||
21 | $table->timestamp('read_at')->nullable(); |
||
22 | $table->timestamps(); |
||
23 | }); |
||
24 | } |
||
25 | |||
36 |