-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_tables.sql
26 lines (25 loc) · 957 Bytes
/
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
CREATE TABLE tx_hubic_domain_model_account (
uid INT(11) NOT NULL auto_increment,
pid INT(11) DEFAULT '0' NOT NULL,
name VARCHAR(50) DEFAULT '' NOT NULL,
client_id VARCHAR(80) DEFAULT '' NOT NULL,
client_secret VARCHAR(80) DEFAULT '' NOT NULL,
scope VARCHAR(100) DEFAULT '' NOT NULL,
access_token VARCHAR(80) DEFAULT '' NOT NULL,
refresh_token VARCHAR(80) DEFAULT '' NOT NULL,
expiration_date INT(11) DEFAULT '0' NOT NULL,
crdate INT(11) DEFAULT '0' NOT NULL,
deleted TINYINT(4) DEFAULT '0' NOT NULL,
hidden TINYINT(4) DEFAULT '0' NOT NULL,
tstamp INT(11) DEFAULT '0' NOT NULL,
cruser_id INT(11) DEFAULT '0' NOT NULL,
starttime INT(11) DEFAULT '0' NOT NULL,
endtime INT(11) DEFAULT '0' NOT NULL,
sorting INT(11) DEFAULT '0' NOT NULL,
sys_language_uid INT(11) DEFAULT '0' NOT NULL,
l18n_parent INT(11) DEFAULT '0' NOT NULL,
l18n_diffsource mediumtext,
access_group INT(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid)
);