# mysql-json-table Using mysql to store id-to-json tables. A table would look something like this: | id | data | |----------------|--------------------| | Row identifier | JSON-encoded value | ## Why would you do this? To re-use mysql-server capabilities without having to deal with table reshaping. If changes come down the road, the data content might change, but the table stays the same. JSON can easily be made compatible between versions, making for smoother releases and rollbacks. It's also simple, and I like simple. ## Documentation Haddock documentation can be found [here](https://daniel-casanueva.gitlab.io/haskell/mysql-json-table/doc) (based on the main branch).