How can I add or remove tables dynamically on same database version #374
-
Hi, as the title indicate, Is it possible to do it? My goal is to have a dynamic interaction with database, because I'm using the concept of agent that need to work on different campaign, and each campaign have the own records, so when an agent is assigned to a new campaign, I need to create a table in reference with that campaign to store their records. This is my first time using indexedDb, and the JsStore library is great to achieved my needs. Thank by the way |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Creating dynamic tables is not suited to your needs and its not possbbile. Better to think how to organise your data - You can create new campaign and get campaign id and use those campaign id to associate agents and different data. Even in backend (server side programming) - you need to do these. |
Beta Was this translation helpful? Give feedback.
Creating dynamic tables is not suited to your needs and its not possbbile. Better to think how to organise your data -
You can create new campaign and get campaign id and use those campaign id to associate agents and different data.
Even in backend (server side programming) - you need to do these.