Change table name for tracker store

I have three chatbots on different websites and a single database to handle all the chatbot storage. I want to change the table name for the tracker store without changing it in the tracker_store.py file in rasa core so that i can store the conversations of different bots in different tables

Only dyanmodb supports this as a standard option.

You could use the Redis tracker store and use a different Redis db number for each of your bots. That would mean an additional service in the pipeline, but you don’t need to change any source code.