Starting to implement action_OTA_HotelResNotif_GuestRequests. Necessary to fully comply with spec

This commit is contained in:
Jonas Linter
2025-10-01 09:31:11 +02:00
parent 228aed6d58
commit 13df12afc6
7 changed files with 167 additions and 129 deletions

View File

@@ -18,9 +18,6 @@ def get_database_url(config=None):
return db_url
class Customer(Base):
__tablename__ = "customers"
id = Column(Integer, primary_key=True)
@@ -71,7 +68,6 @@ class Reservation(Base):
customer = relationship("Customer", back_populates="reservations")
class HashedCustomer(Base):
__tablename__ = "hashed_customers"
id = Column(Integer, primary_key=True)