Интегрирован wesp в сайт
CI / quality (push) Canceled after 0s

This commit is contained in:
влад
2026-07-17 12:57:18 +03:00
parent 5dfa06ddbe
commit 355c0ef9f1
883 changed files with 194576 additions and 177 deletions
+11
View File
@@ -0,0 +1,11 @@
from sqlalchemy import Column, Integer, String
class LabAuditMixin:
version = Column(Integer, default=1, nullable=False)
created_by = Column(String(50), nullable=False, default="system")
updated_by = Column(String(50), nullable=False, default="system")
# Backward alias during migration cleanup
LabSyncMixin = LabAuditMixin