Changes between Version 12 and Version 13 of RelationalDesign


Ignore:
Timestamp:
05/26/26 04:16:39 (2 days ago)
Author:
232012
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RelationalDesign

    v12 v13  
    1010{{{#!div style="text-align: justify; width: 100%;"
    1111
    12 1. USER (**__user_id__**, **username**, **email**, **password**, **date_created**, shipping_address, telephone_number)
     121. USERS (**__user_id__**, **username**, **email**, **password**, **date_created**, shipping_address, telephone_number)
    1313
    14 2. ADMIN (**__user_id*__**[USER], **type**, **discount_percentage**)
     142. ADMINS (**__user_id*__**[USER], **type**, **discount_percentage**)
    1515
    16 3. CONSUMER (**__user_id*__**[USER], **points_collected**)
     163. CONSUMERS (**__user_id*__**[USER], **points_collected**)
    1717
    18 4. WISHLIST (**__wishlist_id__**, **__user_id*__**[USER])
     184. WISHLISTS (**__wishlist_id__**, **__user_id*__**[USER])
    1919
    20 5. WISHLIST_ITEM (**__wishlist_id__**, **__product_id__**[PRODUCT], **added_at**)
     205. WISHLIST_ITEMS (**__wishlist_id__**, **__product_id__**[PRODUCT], **added_at**)
    2121
    22 6. PRODUCT (**__product_id__**, **__release_id*__**[RELEASE], **price**, **format**, **description**, **stock**)
     226. PRODUCTS (**__product_id__**, **__release_id*__**[RELEASE], **price**, **format**, **product_description**, **stock**)
    2323
    24 7. RELEASE (**__release_id__**, **title**, **release_date**, **genre**, **cover_photo**, record_label)
     247. RELEASES (**__release_id__**, **title**, **release_date**, **genre**, **cover_photo**, record_label)
    2525
    26 8. ALBUM (**__release_id*__**[RELEASE])
     268. ALBUMS (**__release_id*__**[RELEASE])
    2727
    28 9. SINGLE (**__release_id*__**[RELEASE], **duration**)
     289. SINGLE_RELEASES (**__release_id*__**[RELEASE], **song_duration**)
    2929
    30 10. SONG (**__song_id__**, **song_name**, **duration**)
     3010. SONGS (**__song_id__**, **song_name**, **duration**)
    3131
    32 11. ORDER (**__order_id__**, **__user_id*__**[USER], **purchase_date**, **status**, **payment_method**, **points_earned**, points_used)
     3211. ORDERS (**__order_id__**, **__user_id*__**[USER], **purchase_date**, **status**, **payment_method**, **points_earned**, **points_used**)
    3333
    34 12. ORDER_ITEM (**__order_id*__**[ORDER], **__product_id*__**[PRODUCT], **quantity**, **price_at_purchase**)
     3412. ORDER_ITEMS (**__order_id*__**[ORDER], **__product_id*__**[PRODUCT], **quantity**, **price_at_purchase**)
    3535
    36 13. ARTIST (**__artist_id__**, **artist_name**, photo, description)
     3613. ARTISTS (**__artist_id__**, **artist_name**, artist_photo, artist_description)
    3737
    38 14. MODIFICATION (**__modification_id__**, **__user_id*__**[ADMIN], **date_modified**, **type_of_modification**, discount)
     3814. MODIFICATIONS (**__modification_id__**, **__user_id*__**[ADMIN], **date_modified**, **type_of_modification**, discount)
    3939
    40 15. MODIFICATION_PRODUCT (**__modification_id*__**[MODIFICATION], **__product_id*__**[PRODUCT])
     4015. MODIFICATION_PRODUCTS (**__modification_id*__**[MODIFICATION], **__product_id*__**[PRODUCT])
    4141
    42 16. RELEASE_ARTIST (**__release_id*__**[RELEASE], **__artist_id*__**[ARTIST])
     4216. RELEASE_ARTIST (**__release_id*__**[RELEASE], **__artist_id*__**[ARTIST], **release_ordinal**, **type**)
    4343
    444417. ALBUM_SONG (**__album_id*__**[ALBUM], **__song_id*__**[SONG])
    4545
    46 18. SONG_ARTIST (**__song_id*__**[SONG], **__artist_id*__**[ARTIST])
     4618. SONG_ARTIST (**__song_id*__**[SONG], **__artist_id*__**[ARTIST], song_ordinal)
    4747}}}
    4848