Probably you have added an uniqueness validation on the entity Group attribute Name.
In your database there are records that you made before adding the validation that have the same Attribute Name Value. With the new restriction in place your database is not ‘valid’ therefore you application cannot be started.
To solve this delete the validation, and find the double value records, adjust these records and add the validation again.