Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | 22 | public static function defaultColumns(Blueprint $table) |
|
11 | { |
||
12 | 22 | $table->id(); |
|
13 | 22 | $table->string('type', 50)->default('default')->index(); |
|
14 | 22 | $table->string('content_type')->nullable()->index(); |
|
15 | 22 | $table->json('content')->nullable(); |
|
16 | 22 | $table->dateTime('notified_at')->nullable()->index(); |
|
17 | 22 | $table->nullableMorphs('sender'); |
|
18 | 22 | $table->json('meta')->nullable(); |
|
19 | 22 | $table->timestamps(); |
|
20 | } |
||
22 |