You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix: NEventStore constraint failed with MySql 8.x (works with 5.7) #487
Breaking Change
The fix for #487 changed how the Commits table is created for MySql 8.x:
to update an existing database in order to run on 8.x you need to manually update the Commits table schema and change the constraint of the CommitId column
from: CommitId binary(16) NOT NULL CHECK (CommitId != 0) to: CommitId binary(16) NOT NULL CHECK (CommitId <> 0x00).