-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_tables.sql
More file actions
19 lines (18 loc) · 686 Bytes
/
Copy pathext_tables.sql
File metadata and controls
19 lines (18 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# Table structure for table 'tx_formhandler_subscription_authcodes'
#
CREATE TABLE tx_formhandler_subscription_authcodes (
uid int(11) unsigned NOT NULL auto_increment,
pid int(11) unsigned DEFAULT '0' NOT NULL,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
reference_table varchar(255) DEFAULT '' NOT NULL,
reference_table_uid_field varchar(255) DEFAULT '' NOT NULL,
reference_table_uid varchar(255) DEFAULT '' NOT NULL,
reference_table_hidden_field varchar(255) DEFAULT '' NOT NULL,
action varchar(255) DEFAULT '' NOT NULL,
serialized_auth_data text,
auth_code varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid),
UNIQUE KEY auth_code (auth_code)
);