Hi,
I am having a master Django running connected 24/7 on a dedicated server.
I have also a lot of small devices running also a django instance that connects from time to time to the Internet to synchronize some tables of their DB, especially the Users one, including the passwords.
All the modifications to the tables to be sync will be done on the master instance.
I am a beginner in Django and not too sure if I can basically copy paste the tables from one instance to the other (salt is the same? If not how to make it the same?)
How am I supposed to approach this issue and what should I be careful about?
Thank you,
Tibibs