forked from ursbraem/instagram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_tables.sql
More file actions
22 lines (19 loc) · 723 Bytes
/
ext_tables.sql
File metadata and controls
22 lines (19 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
CREATE TABLE tx_instagram_feed (
uid int(11) NOT NULL auto_increment,
import_date int(11) unsigned DEFAULT '0' NOT NULL,
username varchar(255) DEFAULT '' NOT NULL,
data mediumtext NOT NULL,
PRIMARY KEY (uid)
);
CREATE TABLE tx_instagram_token (
uid int(11) NOT NULL auto_increment,
username varchar(255) DEFAULT '' NOT NULL,
user_id varchar(255) DEFAULT '' NOT NULL,
token varchar(255) DEFAULT '' NOT NULL,
expire_date int(11) unsigned DEFAULT '0' NOT NULL,
app_id varchar(255) DEFAULT '' NOT NULL,
app_secret varchar(255) DEFAULT '' NOT NULL,
app_return_url varchar(255) DEFAULT '' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (uid)
);