-
Notifications
You must be signed in to change notification settings - Fork 1
/
ext_tables.sql
35 lines (32 loc) · 1.13 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
34
35
#
# Table structure for table 'tt_content'
#
CREATE TABLE tt_content (
tx_html5mediakit_media int(11) DEFAULT '0' NOT NULL
);
#
# Table structure for table 'sys_file_reference'
#
CREATE TABLE sys_file_reference (
tx_html5mediakit_track_kind varchar(100) DEFAULT '' NOT NULL,
tx_html5mediakit_track_srclang varchar(100) DEFAULT '' NOT NULL,
tx_html5mediakit_track_label varchar(100) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'tx_html5mediakit_domain_model_mediacontentelement'
#
CREATE TABLE tx_html5mediakit_domain_model_media (
content_element int(11) unsigned DEFAULT '0' NOT NULL,
parent_record int(11) unsigned DEFAULT '0' NOT NULL,
parent_table varchar(255) DEFAULT '' NOT NULL,
type varchar(100) DEFAULT '' NOT NULL,
tracks tinyint(3) unsigned DEFAULT '0' NOT NULL,
caption varchar(255) DEFAULT '' NOT NULL,
description text NOT NULL,
mp3 tinyint(3) unsigned DEFAULT '0' NOT NULL,
ogg tinyint(3) unsigned DEFAULT '0' NOT NULL,
h264 tinyint(3) unsigned DEFAULT '0' NOT NULL,
ogv tinyint(3) unsigned DEFAULT '0' NOT NULL,
poster tinyint(3) unsigned DEFAULT '0' NOT NULL,
web_m tinyint(3) unsigned DEFAULT '0' NOT NULL
);