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?
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?
Source: https://ru.stackoverflow.com/questions/866255/
All Articles
user_idfield to theuser_idand thus separate the data by users? - kidig