Updating the db model to just import all match details as blob/json directly into the DB.
The postgres DB is only supposed to semi-persistently hold data as such no actual table model should be needed.
Throwing all data into a json field is totally fine to be exported later.
Further upsides:
- No reduction of data
- Less error prone if fields were to miss
- roleML can be used easily because both match details and match timeline will be in the default format.
This will either resolve #6 or offer an alternative service.
Updating the db model to just import all match details as blob/json directly into the DB.
The postgres DB is only supposed to semi-persistently hold data as such no actual table model should be needed.
Throwing all data into a json field is totally fine to be exported later.
Further upsides:
This will either resolve #6 or offer an alternative service.