forked from Paulcy10x/Twitter-Data-Analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.sql
More file actions
23 lines (20 loc) · 656 Bytes
/
Copy pathschema.sql
File metadata and controls
23 lines (20 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
CREATE TABLE TweetInformation
(
id serial NOT NULL primary key,
created_at TEXT DEFAULT NULL,
source VARCHAR(200) DEFAULT NULL,
original_text TEXT DEFAULT NULL,
clean_text TEXT DEFAULT NULL,
sentiment TEXT DEFAULT NULL,
polarity FLOAT DEFAULT NULL,
subjectivity FLOAT DEFAULT NULL,
lang TEXT DEFAULT NULL,
favourite_count INT DEFAULT NULL,
retweet_count INT DEFAULT NULL,
original_author TEXT DEFAULT NULL,
followers_count INT DEFAULT NULL,
friends_count INT DEFAULT NULL,
hashtags VARCHAR(200) DEFAULT NULL,
user_mentions VARCHAR(200) DEFAULT NULL,
place TEXT DEFAULT NULL
);