[Fixed]-Creating dynamic tables in postgres using django

1👍

In fact you do not need to create a special table for each customer. SQL databases is designed in a manner to keep all similar data in one table. It is much easier to work with them in such a way.

At a moment I’d like to recommend to read about relational databases to better understand ways how to store data in it. Then you’ll see how to better design application and data storage.

Leave a comment