json-to-mysql
json-to-mysql copied to clipboard
handle sub object and subsubobject data
when inserting data into a table, allow it to have data in sub objects, and create normal keys in the original object for that data. so:
{ "properties" : { "one" : true, "two" : false} }
becomes:
{ "properties_one" : true, "properties_two" : false}