ProductReview Example: Difference between revisions

m
mNo edit summary
Line 18: Line 18:


= [[DataDictionary|Data Dictionaries]] =
= [[DataDictionary|Data Dictionaries]] =
We want to store information about users, places, purchases and known items. The other tables should hold sufficient information about the items purchased and how the users liked them.
We want to store information about users, places and known items. The other tables should hold sufficient information about the items and how the users liked them.


Create these tables in the database builder and create the associated data dictionaries .
The following data dictionaries should now be available:


The following data dictionaries  should now be available:
==Address==
*Place_id
*Name
*StreetAddress
*City
*ZIPCode
*Longitude
*latitude


==UserInfo==
==User==
*User_id
*User_id
*FirstName
*FirstName
*LastName
*LastName
*StreetAddress
*City
*ZIPCode
*EmailAddress
*EmailAddress
*Address_id
*Rights (system user?)


==Place==
==Shop==
*Place_id
*Shop_id
*StoreName
*Name
*StreetAddress
*Description
*City
*Address_id
*ZIPCode
*Administrator (identify if the user is administrator)


==Item==
==Item==
*Item_id
*Item_id
*Name
*Name
*Description
*Manufacturer
*Manufacturer
*Price
==Purchase==
*Item_id
*Place_Id
*User_id
*DateTime
*Price
*Price


Line 57: Line 55:
*Item_Id
*Item_Id
*User_id
*User_id
*Place_Id
*Rating
*Rating
*Comment


= VDF Ajax implementation =  
= VDF Ajax implementation =  
1,134

edits