Added new doc

This commit is contained in:
Antonio de la Rosa 2022-04-19 01:41:22 +02:00
parent 9fe99c8c72
commit c91de6863a

View file

@ -258,6 +258,14 @@ class PrimaryKeyField(PhangoField):
class WebModel: class WebModel:
"""The most important class for the framework
Webmodel is a class for create objects that represent models. This models are a mirage of SQL tables. You can create fields, add indexes, foreign keys, and more.
Attributes:
arr_sql_index (dict):
"""
__slots__=('sqlclass', 'fields', 'forms') __slots__=('sqlclass', 'fields', 'forms')