The document describes database tables for an e-commerce application including tables for the cart, orders, products, users, and product comparisons. Fields and data types are specified for each table.
The document describes database tables for an e-commerce application including tables for the cart, orders, products, users, and product comparisons. Fields and data types are specified for each table.
The document describes database tables for an e-commerce application including tables for the cart, orders, products, users, and product comparisons. Fields and data types are specified for each table.
The document describes database tables for an e-commerce application including tables for the cart, orders, products, users, and product comparisons. Fields and data types are specified for each table.
Download as DOCX, PDF, TXT or read online from Scribd
Download as docx, pdf, or txt
You are on page 1of 7
Timeline chart
Data dictionary
Table Name: Cart:
Field Name Data type Size Not Null Description
Id Integer 11 True Primary Key Product_Id Integer 11 True User_Id Integer 11 True Quantity Integer 11 True Order_Id Integer 11 True Date Date True Table Name: Order: Field Name Data type Size Not Null Description Id Integer 11 True Primary Key User id Integer 11 True product Id Integer 11 True Total Amount Integer 11 True Discount code Varchar 100 True Discount Prize Integer 11 True Final Total Integer 11 True Table Name: Product: Field Name Data type Size Not Null Description Id Integer 11 True Primary Key Name Varchar 100 True Description Text True Price Integer 11 True Offer Price Integer 100 False Image Id Integer 11 True Table Name: User: Field Name Data type Size Not Null Description Id Integer 11 True Primary Key Full Name Varchar 100 True Email Varchar 100 True Password Varchar 100 True Contact Big Integer 20 True Fcm Id Long Text False Role Id Integer 11 True Table Name: product_compair Field Name Data type Size Not Null Description PC_id Integer 11 True Primary Key Product_id Varchar 100 True price Integer 11 True productS1 Text True Price s1 Big Integer 20 True productS2 Integer 11 True Price s2 Integer 11 True productS3 Integer 11 True Price s3 Integer 11 True Collaboration Diagram User modelling language diagram