-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_tables.sql
33 lines (29 loc) · 1.16 KB
/
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
30
31
32
33
#
# Table structure for table 'tx_twglossary_domain_model_entry'
#
CREATE TABLE tx_twglossary_domain_model_entry (
title varchar(255) DEFAULT '' NOT NULL,
description text,
image int(11) DEFAULT '0' NOT NULL,
similar_entries varchar(255) DEFAULT '' NOT NULL,
first_character varchar(255) DEFAULT '0' NOT NULL,
starttime INT(11) UNSIGNED DEFAULT '0' NOT NULL,
endtime INT(11) UNSIGNED DEFAULT '0' NOT NULL,
slug VARCHAR(255) DEFAULT NULL
);
#
# Table structure for table 'tx_twglossary_domain_model_entrygroup'
#
CREATE TABLE tx_twglossary_domain_model_entrygroup (
uid INT(11) NOT NULL AUTO_INCREMENT,
pid INT(11) DEFAULT '0' 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,
hidden TINYINT(4) UNSIGNED DEFAULT '0' NOT NULL,
character varchar(5) DEFAULT '' NOT NULL,
sorting INT(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid)
);