Changes between Version 3 and Version 4 of RelationalDesign
- Timestamp:
- 12/15/21 11:17:47 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RelationalDesign
v3 v4 16 16 ''Client''(**__client_number_id__**) 17 17 18 ''Shipping_employee''( **__shipping_employee_id__**)18 ''Shipping_employee''(__**user_id**__*(user), **shipping_employee_id**) 19 19 20 20 ''Role''(**__id_role__**, **role_name, role_desc**) … … 22 22 ''Online_stores''(**__store_id__, name, web_address, phone_number, email, social_media**) 23 23 24 ''Shipping''(**__shipping_id__, location, date_from, date_to** )24 ''Shipping''(**__shipping_id__, location, date_from, date_to**, **user_id***(shipping_employee), **shopping_id***(shopping_bag)) 25 25 26 26 ''Payment''(**__payment_id__, info**) … … 28 28 ''Category''(**__category_id__, category_name**) 29 29 30 ''Store_employee''( **__store_employee_id__**, store_id*(online_stores))30 ''Store_employee''(__**user_id**__*(user), **store_employee_id**, store_id*(online_stores)) 31 31 32 ''Catalogue''(**__catalogue_id__, catalogue_from, catalogue_to, type**, store_id*(online_stores))32 ''Catalogue''(**__catalogue_id__, catalogue_from, catalogue_to, type**, **__store_id__***(online_stores), **__product_in_store_id__***(product_in_store)) 33 33 34 34 ''Shopping_bag''(**__shopping_id__, order_date, shipping_date, modified, client_number_id***(client)) 35 35 36 ''Product_in_store''(**__product_in_store_id__**, store_id*(online_stores), product_id*(product))36 ''Product_in_store''(**__product_in_store_id__**, **store_id*(online_stores)**, **product_id***(product)) 37 37 38 38 ''Product''(**__product_id__, name, in_store, size, color**, category_id*(category)) … … 42 42 ''Works_as''(**__id_role*__**(role), **__store_employee_id*__**(store_employee), **works_from**, **works_to**) 43 43 44 ''Carries''(**__shipping_employee_id*__**(shipping_employee), **__shipping_id*__**(shipping))45 46 44 ''Exists''(**__catalogue_id*__**(catalogue),**__product_in_store_id*__**(product_in_store)) 47 45