Skip to content

Commit

Permalink
TASK: Fix name of index on PersistentResource.sha1
Browse files Browse the repository at this point in the history
The name IDX_35DC14F03332102A is different from what Doctrine does
auto-generate, but needs to be used due to BC reasons with existing
migrations.

See neos/neos-development-collection#2475
  • Loading branch information
kdambekalns committed May 3, 2019
1 parent 978f60c commit b281144
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* Model representing a persistable resource
*
* @Flow\Entity
* @ORM\Table(indexes={@ORM\Index(columns={"sha1"})})
* @ORM\Table(indexes={@ORM\Index(name="IDX_35DC14F03332102A",columns={"sha1"})})
*/
class PersistentResource implements ResourceMetaDataInterface, CacheAwareInterface
{
Expand Down

0 comments on commit b281144

Please sign in to comment.