-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
333cf57
commit beae067
Showing
9 changed files
with
39,596 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions
22
Database/General Database Structure/TABLES_TWEET_DATABASE.sql
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,22 @@ | ||
CREATE TABLE tweets ( | ||
tweet_id BIGINT PRIMARY KEY, | ||
tweet TEXT, | ||
date_time VARCHAR(40), | ||
language VARCHAR(10) | ||
); | ||
|
||
|
||
CREATE TABLE hashtags ( | ||
hashtag_id BIGINT PRIMARY KEY, | ||
hashtag VARCHAR(300) collate utf8mb4_bin | ||
); | ||
|
||
CREATE TABLE tweet_hashtags ( | ||
tweet_id BIGINT, | ||
hashtag_id BIGINT, | ||
count BIGINT, | ||
PRIMARY KEY(tweet_id, hashtag_id), | ||
FOREIGN KEY(tweet_id) REFERENCES tweets(tweet_id) ON DELETE CASCADE, | ||
FOREIGN KEY(hashtag_id) REFERENCES hashtags(hashtag_id) ON DELETE CASCADE | ||
); | ||
|
Oops, something went wrong.