Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
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->table('ext_translations'); |
||
26 | $builder->entity()->setRepositoryClass(TranslationRepository::class); |
||
27 | |||
28 | $builder->index(["locale", "object_class", "foreign_key"])->name('translations_lookup_idx'); |
||
29 | $builder->unique(["locale", "object_class", "field", "foreign_key"])->name('lookup_unique_idx'); |
||
30 | } |
||
31 | } |
||
32 |