| | 1 | = Логички и физички дизајн |
| | 2 | |
| | 3 | == Релациска шема |
| | 4 | |
| | 5 | * Примарен клуч: __underline__ |
| | 6 | * Надворешен клуч: __underline__ и * |
| | 7 | * Not null: **bold** |
| | 8 | ---- |
| | 9 | |
| | 10 | User ( **_UserID_**, **Name**, **Surname**, **Email**, **Password**, **Phone number**, **Date joined** ) |
| | 11 | |
| | 12 | Flight ( **_FlightID_**, **Flight number**, **Departure Airport**, **Arrival Airport**, **Departure time**, **Arrival time**, **Duration**, **Price**, **Available seats** ) |
| | 13 | |
| | 14 | Booking ( **_BookindID_**, **_UserID*_**, **_FlightID*_**, **Booking date**, **Payment status**, **Total cost**, Seat number ) |
| | 15 | |
| | 16 | {{{ |
| | 17 | UserID референцира кон User. |
| | 18 | FlightID референцира кон Flight. |
| | 19 | }}} |
| | 20 | |
| | 21 | |
| | 22 | Destination ( **_DestinationID_**, **Name**, **Country**, Description, Popular Attraction, Best time to visit ) |
| | 23 | |
| | 24 | Review ( **_ReviewID_**, **_UserID*_**, **_TargetID*_**, Review comment, **Rating**, Date ) |
| | 25 | |
| | 26 | Airport ( **_AirportID_**, **Name**, **City**, **Country**, **Code** ) |
| | 27 | |
| | 28 | Payment ( **_PaymentID_**, **_BookingID*_**, **_UserID*__**, **Payment method**, **Amount**, **Transaction date**, **Payment Status** ) |
| | 29 | |
| | 30 | Notification ( **_NotificationID_**, **_UserID*_**, Message, Type, Date Sent ) |
| | 31 | |
| | 32 | Wishlist ( **_WishlistID_**, **_UserID*_**, **_TargetID*_**, Date added ) |
| | 33 | |
| | 34 | Administrator ( **_AdminID_**, **Email** ) |
| | 35 | |
| | 36 | Support Ticket ( **_TicketID_**, **_UserID*_**, **Subject**, Description, **Status**, **Date created**, **Date resolved**, Assigned to ) |
| | 37 | |