Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
smsraj2001 authored May 2, 2023
1 parent 333cf57 commit beae067
Show file tree
Hide file tree
Showing 9 changed files with 39,596 additions and 0 deletions.
Binary file added Architecture Diagram.jpeg
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 Database/General Database Structure/TABLES_TWEET_DATABASE.sql
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
);

Loading

0 comments on commit beae067

Please sign in to comment.