class SomeClass(db.Models): id = Column(Integer, primary_key=True) name = Column(String(50)) 

We created a table some_class , and now the question is, if I have a user and I want to create my own table for each, how can I do this?

  • Why make a table for each user? Isn't it easier to add the user_id field to the user_id and thus separate the data by users? - kidig

0