Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1.0028 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
23 | public function map(Fluent $builder) |
||
24 | { |
||
25 | 1 | $builder->integer('id')->unsigned()->primary()->generatedValue(function (GeneratedValue $builder) { |
|
26 | $builder->identity(); |
||
27 | 1 | }); |
|
28 | 1 | $builder->string('locale')->length(8); |
|
29 | 1 | $builder->string('field')->length(32); |
|
30 | 1 | $builder->text('content')->nullable(); |
|
31 | 1 | } |
|
32 | } |
||
33 |