Changes between Version 3 and Version 4 of RelationalSchema


Ignore:
Timestamp:
12/17/24 13:15:51 (4 months ago)
Author:
222077
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RelationalSchema

    v3 v4  
    3535`VEHICLE_OPERATION`(__***account_email**__(`ACCOUNT`), __***plate_num**__(`VEHICLE`))
    3636
    37 `TRIP`(__**trid_id**__, __***transport_organizer_email**__(`ACCOUNT`), __***route**__, free_seats, date, status)
     37`TRIP`(__**trid_id**__, __***transport_organizer_email**__(`ACCOUNT`), __***route_id**__(`ROUTE`), free_seats, date, status)
    3838
    39 `DRIVES_ON`(__***driver**__, __***trip**__)
     39`DRIVES_ON`(__***driver_email**__(`DRIVER`), __***trip_id**__(`TRIP`))
    4040
    4141`ROUTE`(__**id**__, *transport_organizer_email(`ACCOUNT`), *from_loc (`LOCATION`), *to_loc (`LOCATION`))
    4242
    43 `DAY_ACTIVE`(__***route**, __**day**__)
     43`DAY_ACTIVE`(__***route_id**(`ROUTE`) __**day**__)
    4444
    4545`LOCATION`(__**latitude**__, __**longitude**__, __**time**__, name)
     
    5555`PAYMENT`(__**payment_id**__, __***account_email**__ (`ACCOUNT`), date, total_price, n_tickets)
    5656
    57 `FAVORITE`(__***route**__, __***account_email**__ (`ACCOUNT`))
     57`FAVORITE`(__***route_id**__(`ROUTE`), __***account_email**__ (`ACCOUNT`))
    5858
    5959`REVIEW`(__**review_id**__, __***account_email**__ (`ACCOUNT`), *ticket_id, description, rating)