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
Postgres columns always seem to be created in lowercase. Saving the data works without any problems. But when reading you get the column names in lowercase.
Example:
recordedOn => recordedon
There is then an error when accessing the array. Another field is also affected: aggregateId.
The solution would be to create the columns in lowersnakecase. But that would be a BC break because you would have to adapt the scheme.
Otherwise you would have to fix the data in the store so that the data can be loaded from Postgres.
The text was updated successfully, but these errors were encountered:
Postgres columns always seem to be created in lowercase. Saving the data works without any problems. But when reading you get the column names in lowercase.
Example:
recordedOn
=>recordedon
There is then an error when accessing the array. Another field is also affected:
aggregateId
.The solution would be to create the columns in
lowersnakecase
. But that would be a BC break because you would have to adapt the scheme.Otherwise you would have to fix the data in the store so that the data can be loaded from Postgres.
The text was updated successfully, but these errors were encountered: