DoorDash food delivery database schema

How a food delivery marketplace models its data: restaurant menus built from reusable modifier groups, orders that snapshot every chosen option, courier dispatch offers, live location tracking, and the fee split between restaurant, courier and platform.

Doordash Delivery ER diagram

DoorDash food delivery database schema n1 n1 n1 n1 n1 n1 n1 n1 n1 n1 n1 n1 n1 n1 n1 n1 n1 n1 customers idBIGINT emailVARCHAR full_nameVARCHAR phoneVARCHAR default_tip_bpsINTEGER created_atTIMESTAMP updated_atTIMESTAMP restaurants idBIGINT nameVARCHAR slugVARCHAR address_lineVARCHAR cityVARCHAR country_codeCHAR latitudeDECIMAL longitudeDECIMAL timezoneVARCHAR currency_codeCHAR commission_bpsINTEGER prep_time_minutesINTEGER is_accepting_orde…BOOLEAN created_atTIMESTAMP menu_sections idBIGINT restaurant_idBIGINT nameVARCHAR descriptionVARCHAR positionINTEGER available_fromTIME available_toTIME is_activeBOOLEAN menu_items idBIGINT section_idBIGINT nameVARCHAR descriptionVARCHAR base_price_centsINTEGER currency_codeCHAR caloriesINTEGER is_availableBOOLEAN sold_out_untilTIMESTAMP positionINTEGER modifier_groups idBIGINT restaurant_idBIGINT nameVARCHAR min_choicesINTEGER max_choicesINTEGER allow_duplicatesBOOLEAN positionINTEGER modifiers idBIGINT modifier_group_idBIGINT nameVARCHAR price_delta_centsINTEGER is_defaultBOOLEAN is_availableBOOLEAN positionINTEGER menu_item_modifier_… menu_item_idBIGINT modifier_group_idBIGINT positionINTEGER min_choices_overr…INTEGER max_choices_overr…INTEGER orders idBIGINT customer_idBIGINT restaurant_idBIGINT courier_idBIGINT order_codeVARCHAR statusVARCHAR delivery_addressJSON delivery_latitudeDECIMAL delivery_longitudeDECIMAL delivery_instruct…VARCHAR subtotal_centsINTEGER tax_centsINTEGER tip_centsINTEGER total_centsINTEGER currency_codeCHAR promised_atTIMESTAMP placed_atTIMESTAMP accepted_atTIMESTAMP ready_atTIMESTAMP picked_up_atTIMESTAMP delivered_atTIMESTAMP cancelled_atTIMESTAMP order_items idBIGINT order_idBIGINT menu_item_idBIGINT name_snapshotVARCHAR quantityINTEGER unit_base_price_c…INTEGER unit_total_centsINTEGER line_total_centsINTEGER special_instructi…VARCHAR order_item_modifiers idBIGINT order_item_idBIGINT modifier_idBIGINT group_name_snapsh…VARCHAR modifier_name_sna…VARCHAR price_delta_centsINTEGER quantityINTEGER couriers idBIGINT full_nameVARCHAR phoneVARCHAR vehicle_typeVARCHAR statusVARCHAR current_latitudeDECIMAL current_longitudeDECIMAL location_updated_…TIMESTAMP rating_avgDECIMAL onboarded_atTIMESTAMP dispatch_offers idBIGINT order_idBIGINT courier_idBIGINT sequenceINTEGER offered_atTIMESTAMP expires_atTIMESTAMP responded_atTIMESTAMP responseVARCHAR distance_metersINTEGER projected_payout_…INTEGER courier_pings idBIGINT courier_idBIGINT order_idBIGINT recorded_atTIMESTAMP latitudeDECIMAL longitudeDECIMAL accuracy_metersINTEGER speed_mpsDECIMAL heading_degreesINTEGER order_fees idBIGINT order_idBIGINT fee_typeVARCHAR payerVARCHAR payeeVARCHAR amount_centsINTEGER currency_codeCHAR basis_noteVARCHAR created_atTIMESTAMP

Related database schemas