@@ -54,7 +54,7 @@ |
||
54 | 54 | */ |
55 | 55 | public function getName(): string |
56 | 56 | { |
57 | - $name = ($this->isUnique() ? 'unique_' : 'index_') . join('_', $this->getColumns()); |
|
57 | + $name = ($this->isUnique() ? 'unique_' : 'index_').join('_', $this->getColumns()); |
|
58 | 58 | |
59 | 59 | return strlen($name) > 64 ? md5($name) : $name; |
60 | 60 | } |