updated timezone params header
This commit is contained in:
@@ -114,18 +114,18 @@ class CrudCollection(CrudMixin):
|
||||
cryp_uu_id: Mapped[str] = mapped_column(
|
||||
String, nullable=True, index=True, comment="Cryptographic UUID"
|
||||
)
|
||||
created_by: Mapped[str] = mapped_column(
|
||||
String, nullable=True, comment="Creator name"
|
||||
)
|
||||
created_by_id: Mapped[int] = mapped_column(
|
||||
Integer, nullable=True, comment="Creator ID"
|
||||
)
|
||||
updated_by: Mapped[str] = mapped_column(
|
||||
String, nullable=True, comment="Last modifier name"
|
||||
)
|
||||
updated_by_id: Mapped[int] = mapped_column(
|
||||
Integer, nullable=True, comment="Last modifier ID"
|
||||
)
|
||||
# created_by: Mapped[str] = mapped_column(
|
||||
# String, nullable=True, comment="Creator name"
|
||||
# )
|
||||
# created_by_id: Mapped[int] = mapped_column(
|
||||
# Integer, nullable=True, comment="Creator ID"
|
||||
# )
|
||||
# updated_by: Mapped[str] = mapped_column(
|
||||
# String, nullable=True, comment="Last modifier name"
|
||||
# )
|
||||
# updated_by_id: Mapped[int] = mapped_column(
|
||||
# Integer, nullable=True, comment="Last modifier ID"
|
||||
# )
|
||||
confirmed_by: Mapped[str] = mapped_column(
|
||||
String, nullable=True, comment="Confirmer name"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user