[update]: Offers

This commit was merged in pull request #34.
This commit is contained in:
VivianDee
2025-05-19 14:37:19 +01:00
parent 89760f81ed
commit 31b0367e6a
12 changed files with 116 additions and 14 deletions
+3 -1
View File
@@ -27,7 +27,9 @@ class Account(db.Model):
account = cls(
id=id,
customer_id=customer_id,
account_type=account_type
account_type=account_type,
created_at=datetime.now(timezone.utc),
updated_at=datetime.now(timezone.utc)
)
try: