From c91de6863a236dd734938f1d664527b9c9e2e360 Mon Sep 17 00:00:00 2001 From: Antonio de la Rosa Date: Tue, 19 Apr 2022 01:41:22 +0200 Subject: [PATCH] Added new doc --- paramecio2/libraries/db/webmodel.py | 8 ++++++++ 1 file changed, 8 insertions(+) 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')