wiki:WikiStart

Version 5 (modified by 171261, 6 months ago) ( diff )

--

Име на проект: FastRentACar

Членови на тимот:

Христијан Мијовски 171240, Теодор Младенов 171261

Актуелна верзија

Дијаграм No image "ERmodel_V1.jpg" attached to WikiStart

Податочни побарувања

Customers: Defines all the customers that want to rent a vehicle (Primary key: EMBG - chosen because it is unique for every customer.)

Vehicles: Defines all information regarding the vehicles. (Primary key: VIN- unique for every vehicle.)

Vehicle types: Defines the types of vehicles. (Primary key: ID- chosen because it's more readable than placing multiple attributes as an entity.)

Payments: Defines the payment details of the customers. (Primary key: payment Id- chosen because it is unique for every payment.)

Bookings: Defines the booking details. (Primary key: Booking id- chosen because it is unique for every booking.)

Booked Vehicles: Defines the booked vehicles per booking. (Primary keys: Booking id, VIN - because we want to keep track of every vehicle and every booking because there can be multiple vehicles on each booking.)

Атрибути

Customers: EMBG(varchar), Email(varchar), Name(varchar), Surname(varchar), Phone_number(varchar), Address(varchar), Id_number(varchar).

Vehicles: VIN(varchar), Registration_number(varchar), Brand_name(varchar), Fuel_type(varchar), Transmission_type(varchar), Number_doors(int), Number_seats(int), Mileage(int), Vehicle_types_id(int).

Vehicle types: Id(int), Name(varchar).

Payments: Payment_id(int), Booking_id(int), Total_amount(int), Date(date), Advance_amount(int).

Bookings: Booking_id(int), Number_Installments(int), Vehicle_vin(varchar), Status(varchar), Amount(int), Date(date).

Booked Vehicles: Booked_id(int), VIN(varchar).

Историјат:

V1: Направен е иницијален ЕР дијаграм според дадениот опис на проектот.

V2: Bolded keywords

V3: Added project information

V4: Added new lines to project

Attachments (1)

Download all attachments as: .zip

Note: See TracWiki for help on using the wiki.