Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | 19 | public static function defaultColumns(Blueprint $table) |
|
11 | { |
||
12 | 19 | $table->id(); |
|
13 | 19 | $table->morphs('tokenable'); |
|
14 | 19 | $table->string('name'); |
|
15 | 19 | $table->string('jti', 64)->unique(); |
|
16 | 19 | $table->unsignedBigInteger('exp'); |
|
17 | 19 | $table->json('abilities')->nullable(); |
|
18 | 19 | $table->timestamps(); |
|
19 | } |
||
21 |