-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
38 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
CREATE DATABASE IF NOT EXISTS Reviews; | ||
USE Reviews; | ||
|
||
CREATE TABLE IF NOT EXISTS reviews( | ||
id INT NOT NULL, | ||
product_id INT NOT NULL, | ||
rating INT, | ||
summary TEXT, | ||
body TEXT, | ||
recommend BOOLEAN, | ||
reported BOOLEAN, | ||
name TEXT, | ||
email TEXT, | ||
PRIMARY KEY(id), | ||
FOREIGN KEY (photos) REFERENCES reviewPhotos(review_id), | ||
FOREIGN KEY (characteristics) REFERENCES reviewCharacteristics(review_id) | ||
) | ||
CREATE TABLE IF NOT EXISTS reviewPhotos( | ||
review_id INT NOT NULL, | ||
url TEXT | ||
) | ||
CREATE TABLE IF NOT EXISTS meta ( | ||
product_id INT NOT NULL, | ||
ratings TEXT, | ||
recommend TEXT, | ||
PRIMARY KEY (product_id), | ||
FOREIGN KEY (characteristics) REFERENCES reviewCharacteristics(review_id) | ||
) | ||
CREATE TABLE IF NOT EXISTS reviewCharacteristics ( | ||
review_id INT NOT NULL, | ||
characteristic_id INT, | ||
recommend INT, | ||
value INT, | ||
) |