Add reusable disrupter ce to replace disturber ce
This commit is contained in:
@@ -45,6 +45,51 @@ CREATE TABLE tx_eptheme_domain_model_slide
|
||||
|
||||
);
|
||||
|
||||
#
|
||||
# Table structure for table 'tx_eptheme_domain_model_disrupter'
|
||||
#
|
||||
CREATE TABLE tx_eptheme_domain_model_disrupter
|
||||
(
|
||||
|
||||
uid int(11) NOT NULL auto_increment,
|
||||
pid int(11) DEFAULT '0' NOT NULL,
|
||||
|
||||
headline varchar(255) DEFAULT '' NOT NULL,
|
||||
layout tinyint(4) unsigned DEFAULT '0' NOT NULL,
|
||||
text text NOT NULL,
|
||||
pi_flexform mediumtext NOT NULL,
|
||||
image int(11) unsigned NOT NULL default '0',
|
||||
tt_content int(11) unsigned 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,
|
||||
starttime int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
endtime int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
|
||||
t3ver_oid int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_id int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_label varchar(255) DEFAULT '' NOT NULL,
|
||||
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
|
||||
t3ver_stage int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_count int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
|
||||
t3ver_move_id int(11) DEFAULT '0' NOT NULL,
|
||||
|
||||
sys_language_uid int(11) DEFAULT '0' NOT NULL,
|
||||
l10n_parent int(11) DEFAULT '0' NOT NULL,
|
||||
l10n_diffsource mediumblob,
|
||||
|
||||
PRIMARY KEY (uid),
|
||||
KEY parent (pid),
|
||||
KEY t3ver_oid (t3ver_oid, t3ver_wsid),
|
||||
KEY language (l10n_parent, sys_language_uid)
|
||||
|
||||
);
|
||||
|
||||
#
|
||||
# Table structure for table 'tx_eptheme_domain_model_lineup'
|
||||
#
|
||||
@@ -133,9 +178,20 @@ CREATE TABLE tt_content
|
||||
tx_eptheme_context_date_to int(11) unsigned DEFAULT '0' NOT NULL,
|
||||
tx_eptheme_lineup int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_contact int(11) unsigned DEFAULT '0',
|
||||
tx_eptheme_disrupter int(11) unsigned DEFAULT '0',
|
||||
button varchar(255) DEFAULT '' NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE tx_eptheme_ttcontent_tx_eptheme_disrupter_mm
|
||||
(
|
||||
uid_local int(11) DEFAULT '0' NOT NULL,
|
||||
uid_foreign int(11) DEFAULT '0' NOT NULL,
|
||||
sorting int(11) DEFAULT '0' NOT NULL,
|
||||
|
||||
KEY uid_local (uid_local),
|
||||
KEY uid_foreign (uid_foreign)
|
||||
);
|
||||
|
||||
CREATE TABLE tx_eptheme_domain_model_addresscheck
|
||||
(
|
||||
uid int(11) NOT NULL auto_increment,
|
||||
|
||||
Reference in New Issue
Block a user