diff --git a/paramecio2/libraries/db/webmodel.py b/paramecio2/libraries/db/webmodel.py index a5a83a1..85bfc28 100644 --- a/paramecio2/libraries/db/webmodel.py +++ b/paramecio2/libraries/db/webmodel.py @@ -258,6 +258,14 @@ class PrimaryKeyField(PhangoField): 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')