Using an RDBMS as event sourcing storage

The event store should not need to know about the specific fields or properties of events. Otherwise every modification of your model would result in having to migrate your database (just as in good old-fashioned state-based persistence). Therefore I wouldn’t recommend option 1 and 2 at all. Below is the schema as used in Ncqrs. … Read more