| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class m171130_000002_credit extends CreatePersistentEntity |
||
| 6 | { |
||
| 7 | public function getTableName(): string |
||
| 8 | { |
||
| 9 | return 'credit'; |
||
| 10 | } |
||
| 11 | |||
| 12 | public function columns(): array |
||
| 13 | { |
||
| 14 | return [ |
||
| 15 | 'id' => $this->primaryKey(), |
||
| 16 | 'workflow_id' => $this->normalKey(), |
||
| 17 | ]; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function foreignKeys(): array |
||
| 24 | ]; |
||
| 25 | } |
||
| 26 | } |
||
| 27 |