xync-schema 0.6.39__tar.gz → 0.6.40__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {xync_schema-0.6.39/xync_schema.egg-info → xync_schema-0.6.40}/PKG-INFO +1 -1
- {xync_schema-0.6.39 → xync_schema-0.6.40}/xync_schema/enums.py +1 -1
- {xync_schema-0.6.39 → xync_schema-0.6.40}/xync_schema/models.py +5 -1
- {xync_schema-0.6.39 → xync_schema-0.6.40/xync_schema.egg-info}/PKG-INFO +1 -1
- {xync_schema-0.6.39 → xync_schema-0.6.40}/.env.sample +0 -0
- {xync_schema-0.6.39 → xync_schema-0.6.40}/.gitignore +0 -0
- {xync_schema-0.6.39 → xync_schema-0.6.40}/.pre-commit-config.yaml +0 -0
- {xync_schema-0.6.39 → xync_schema-0.6.40}/README.md +0 -0
- {xync_schema-0.6.39 → xync_schema-0.6.40}/makefile +0 -0
- {xync_schema-0.6.39 → xync_schema-0.6.40}/pyproject.toml +0 -0
- {xync_schema-0.6.39 → xync_schema-0.6.40}/setup.cfg +0 -0
- {xync_schema-0.6.39 → xync_schema-0.6.40}/tests/__init__.py +0 -0
- {xync_schema-0.6.39 → xync_schema-0.6.40}/tests/test_db.py +0 -0
- {xync_schema-0.6.39 → xync_schema-0.6.40}/xync_schema/__init__.py +0 -0
- {xync_schema-0.6.39 → xync_schema-0.6.40}/xync_schema/pydantic.py +0 -0
- {xync_schema-0.6.39 → xync_schema-0.6.40}/xync_schema.egg-info/SOURCES.txt +0 -0
- {xync_schema-0.6.39 → xync_schema-0.6.40}/xync_schema.egg-info/dependency_links.txt +0 -0
- {xync_schema-0.6.39 → xync_schema-0.6.40}/xync_schema.egg-info/requires.txt +0 -0
- {xync_schema-0.6.39 → xync_schema-0.6.40}/xync_schema.egg-info/top_level.txt +0 -0
|
@@ -289,7 +289,8 @@ class Pmex(BaseModel): # existence pm in ex with no cur tie
|
|
|
289
289
|
pm_id: int
|
|
290
290
|
ex: fields.ForeignKeyRelation[Ex] = fields.ForeignKeyField("models.Ex", "pmexs")
|
|
291
291
|
ex_id: int
|
|
292
|
-
exid: str = fields.
|
|
292
|
+
exid: str = fields.IntField()
|
|
293
|
+
name: str = fields.CharField(63)
|
|
293
294
|
|
|
294
295
|
class Meta:
|
|
295
296
|
unique_together = (("ex_id", "exid"),)
|
|
@@ -479,6 +480,9 @@ class TestEx(Model):
|
|
|
479
480
|
table_description = "Test Exs"
|
|
480
481
|
unique_together = (("action", "ex"),)
|
|
481
482
|
|
|
483
|
+
class PydanticMeta(Model.PydanticMeta):
|
|
484
|
+
max_recursion: int = 2
|
|
485
|
+
|
|
482
486
|
|
|
483
487
|
# class Vpn(Model):
|
|
484
488
|
# user: fields.OneToOneRelation[User] = fields.OneToOneField("models.User", related_name="vpn")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|