forked from svenpet90/instagram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_tables.sql
executable file
·42 lines (35 loc) · 1.09 KB
/
ext_tables.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#
# Table structure for table 'tx_instagram_domain_model_feed'
#
CREATE TABLE tx_instagram_domain_model_feed
(
uid int(11) unsigned DEFAULT 0 NOT NULL auto_increment,
pid int(11) DEFAULT 0 NOT NULL,
token mediumtext,
token_type varchar(255) DEFAULT NULL,
expires_at int(11) unsigned DEFAULT NULL,
user_id varchar(255) DEFAULT NULL,
username varchar(255) DEFAULT NULL,
posts int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# Table structure for table 'tx_instagram_domain_model_post'
#
CREATE TABLE tx_instagram_domain_model_post
(
uid int(11) unsigned DEFAULT 0 NOT NULL auto_increment,
pid int(11) DEFAULT 0 NOT NULL,
caption mediumtext,
posted_at int(11) unsigned DEFAULT NULL,
instagram_id varchar(255) DEFAULT '',
hashtags varchar(5000) DEFAULT '',
link varchar(255) DEFAULT '',
media_type varchar(255) DEFAULT '',
images varchar(255) DEFAULT NULL,
videos varchar(255) DEFAULT NULL,
feed int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid)
);