Changes between Version 2 and Version 3 of ddl
- Timestamp:
- 09/02/25 19:43:55 (8 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ddl
v2 v3 1 **Track**( track_id, name, album_id* (Album), media_type_id* (MediaType), genre_id* (Genre), composer, milliseconds, bytes )1 Track ( track_id, name, album_id* (Album), media_type_id* (MediaType), genre_id* (Genre), composer, milliseconds, bytes ) 2 2 3 3 Album ( album_id, title, artist_id* (Artist) ) … … 7 7 Genre ( genre_id, name ) 8 8 9 MediaType ( media_type_id, name )9 !MediaType ( media_type_id, name ) 10 10 11 11 Price ( price_id, value, date, track_id* (Track) ) 12 12 13 InvoiceLine ( invoice_line_id, invoice_id* (Invoice), track_id* (Track), quantity )13 !InvoiceLine ( invoice_line_id, invoice_id* (Invoice), track_id* (Track), quantity ) 14 14 15 15 Invoice ( invoice_id, customer_id* (Customer), invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total ) … … 19 19 Employee ( employee_id, first_name, last_name, title, reports_to* (Employee), birth_date, hire_date, personal_info_id* (AddressInfo), contact_id* (Contact) ) 20 20 21 AddressInfo ( address_info_id, address, city, state, country, postal_code )21 !AddressInfo ( address_info_id, address, city, state, country, postal_code ) 22 22 23 23 Contact ( contact_id, phone, fax, email ) … … 25 25 Playlist ( playlist_id, name ) 26 26 27 PlaylistTrack ( playlist_track_id, playlist_id* (Playlist), track_id* (Track) )27 !PlaylistTrack ( playlist_track_id, playlist_id* (Playlist), track_id* (Track) )