I am implementing a database model for storing 20+ fields in the iCal calendar format, and I am faced with the tedious input of all this data into the model.py SQLAlchemy file. Is there a more reasonable approach? I am looking for a GUI or model designer who can create a model.py file for me. I would indicate column names and some attributes, such as type, length, etc.
At a minimum, I need this constructor to output the model for a single table. Additional requirements in descending order of priority:
- Create multiple tables
- Support for basic relationships between multiple tables (1: 1, 1: n)
- Support restrictions for columns.
I am also open to other ways to achieve my goal, perhaps using a graphical interface to create tables in the database and then mirror them back into the model.
I appreciate your feedback in advance.
source
share