-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_tables.sql
29 lines (25 loc) · 961 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
27
28
29
#
# Table structure for table 'tx_nxgooglelocations_domain_model_batch'
#
CREATE TABLE tx_nxgooglelocations_domain_model_batch (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
state varchar(255) DEFAULT 'new' NOT NULL,
delete_unused tinyint(4) unsigned DEFAULT '0' NOT NULL,
amount int(11) DEFAULT '0' NOT NULL,
position int(11) DEFAULT '0' NOT NULL,
geocoding_requests int(11) DEFAULT '0' NOT NULL,
api_key varchar(255) DEFAULT '' NOT NULL,
storage_page_id int(11) DEFAULT '0' NOT NULL,
backend_user_id int(11) DEFAULT '0' NOT NULL,
file_name varchar(255) DEFAULT '' NOT NULL,
file_hash varchar(255) DEFAULT '' NOT NULL,
file_content longblob,
type varchar(255) DEFAULT '' NOT NULL,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
cruser_id int(11) unsigned DEFAULT '0' NOT NULL,
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid)
);