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