Modeling your database
#
Introduction :Everything start with your model.
All data that you will insert or retrieve from your data will need to conform to your model.
Your model is immutable and should not be changed at runtime.
All possible fields of your database will statically be indexed once in the lifecycle of your application, which allows immediate access to the metadata of any field in your table, no matter if they are nested or how deep they are nested, without any performance cost compared to a field at the root of your table.
#
Creating your table model classCreate a new class with any name, that inherit from the TableDataModel class. Add a required field of type str,