forked from extcode/contacts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_tables.sql
More file actions
executable file
·33 lines (30 loc) · 851 Bytes
/
ext_tables.sql
File metadata and controls
executable file
·33 lines (30 loc) · 851 Bytes
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
#
# Table structure for table 'tx_contacts_domain_model_contact'
#
CREATE TABLE tx_contacts_domain_model_contact (
path_segment varchar(2048),
birthday int(11) DEFAULT '0' NOT NULL,
teaser text NOT NULL,
description text NOT NULL,
meta_description text NOT NULL,
);
#
# Table structure for table 'tx_contacts_domain_model_company'
#
CREATE TABLE tx_contacts_domain_model_company (
path_segment varchar(2048),
teaser text NOT NULL,
description text NOT NULL,
meta_description text NOT NULL,
);
#
# Table structure for table 'tx_contacts_domain_model_address'
#
CREATE TABLE tx_contacts_domain_model_address (
path_segment varchar(2048),
lat double default '0',
lon double default '0',
);
CREATE TABLE tx_contacts_domain_model_contact_company_mm (
contact int(11) unsigned DEFAULT '0' NOT NULL,
);