OrderDelivery

TypeTable
OrderDeliverygdata_order_delivery_info

If the order is meant for delivery, Delivery Details provided include:

  • Delivery address: The location to which the order needs to be delivered.
  • Delivery instructions: Any special instructions provided by the customer for the delivery.
  • Estimated delivery time: The projected time at which the order will reach the customer.

These details are crucial for ensuring the successful and timely delivery of orders. They also contribute to a smooth and satisfying customer experience by keeping the customer informed about their order status.

Column NameData TypeDescription
order_idvarchar(255) NOT NULLUnique identifier for the order. This is the primary key and links to the gdata_order table.
tagsvarchar(255)Additional tags or labels for the delivery information.
deliveryaddressvarchar(255)Address where the order needs to be delivered.
deliverymodevarchar(255)Mode of delivery (THIRD_PARTY/IN_HOUSE).
deliverynotevarchar(255)Additional notes or instructions related to the delivery.
deliveryorderboolIndicates whether the order is for delivery (true) or not (false).
deliverypartneridvarchar(255)Identifier for the delivery partner or agency facilitating the delivery.
driveridvarchar(255)Unique identifier for the driver assigned to deliver the order.
drivermobilenumbervarchar(255)Mobile number of the driver assigned to deliver the order.
drivernamevarchar(255)Name of the driver assigned to deliver the order.
lastupdatetimevarchar(255)Last updated time for the delivery info (note: the datatype seems to be varchar, consider using timestamp?).
latitudevarchar(255)Latitude of the delivery address.
longitudevarchar(255)Longitude of the delivery address.
pickuptimetimestampExpected time when the driver should pick up the order from the restaurant or preparation point.
referenceidvarchar(255)An external reference ID associated with the delivery, if applicable.
statusvarchar(255)Current status of the delivery (e.g., pending, in transit, delivered).
trackingidvarchar(255)Tracking ID provided for real-time tracking of the delivery.
trackingurlvarchar(255)URL to track the delivery in real-time.