Greetings! I am currently working on an Express js + React js application and using MySQL for database management.
I have successfully stored user information like email, hashed passwords, and user IDs in the database. However, now I want to create an inventory for each user.
This inventory would consist of an array containing the item ID and name that the user owns. How can I implement this? Would it be better to update my database structure or store this information in a text/json file on the server? Any advice is appreciated!