xync-schema 0.6.73.dev17__tar.gz → 0.6.73.dev18__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.73.dev17/xync_schema.egg-info → xync_schema-0.6.73.dev18}/PKG-INFO +1 -1
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/xync_schema/models.py +3 -3
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18/xync_schema.egg-info}/PKG-INFO +1 -1
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/.env.sample +0 -0
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/.gitignore +0 -0
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/.pre-commit-config.yaml +0 -0
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/README.md +0 -0
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/makefile +0 -0
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/pyproject.toml +0 -0
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/setup.cfg +0 -0
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/tests/__init__.py +0 -0
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/tests/test_db.py +0 -0
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/xync_schema/__init__.py +0 -0
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/xync_schema/enums.py +0 -0
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/xync_schema/types.py +0 -0
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/xync_schema.egg-info/SOURCES.txt +0 -0
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/xync_schema.egg-info/dependency_links.txt +0 -0
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/xync_schema.egg-info/requires.txt +0 -0
- {xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/xync_schema.egg-info/top_level.txt +0 -0
|
@@ -314,7 +314,7 @@ class Ad(Model, TsTrait):
|
|
|
314
314
|
max_fiat: float = fields.FloatField()
|
|
315
315
|
detail: str | None = fields.CharField(4095, null=True)
|
|
316
316
|
auto_msg: str | None = fields.CharField(255, null=True)
|
|
317
|
-
status: AdStatus = fields.IntEnumField(AdStatus,
|
|
317
|
+
status: AdStatus = fields.IntEnumField(AdStatus, default=AdStatus.active)
|
|
318
318
|
|
|
319
319
|
maker: fields.ForeignKeyRelation[Actor] = fields.ForeignKeyField("models.Actor", "my_ads")
|
|
320
320
|
maker_id: int
|
|
@@ -350,7 +350,7 @@ class Pm(Model):
|
|
|
350
350
|
alias: str | None = fields.CharField(63, null=True)
|
|
351
351
|
extra: str | None = fields.CharField(63, null=True)
|
|
352
352
|
ok: bool = fields.BooleanField(default=True)
|
|
353
|
-
bank: bool = fields.BooleanField(null=True)
|
|
353
|
+
bank: bool | None = fields.BooleanField(null=True)
|
|
354
354
|
|
|
355
355
|
typ: PmType | None = fields.IntEnumField(PmType, null=True)
|
|
356
356
|
logo: str | None = fields.CharField(119, null=True)
|
|
@@ -454,7 +454,7 @@ class Cred(Model):
|
|
|
454
454
|
|
|
455
455
|
class Meta:
|
|
456
456
|
table_description = "Currency accounts"
|
|
457
|
-
unique_together = (("
|
|
457
|
+
unique_together = (("person_id", "pmcur_id", "detail"),)
|
|
458
458
|
|
|
459
459
|
|
|
460
460
|
class CredEx(Model):
|
|
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
|
{xync_schema-0.6.73.dev17 → xync_schema-0.6.73.dev18}/xync_schema.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|