Skip to content
Snippets Groups Projects
Commit 3f55dafd authored by Torsten Oppermann's avatar Torsten Oppermann
Browse files

[TASK] Adding new Table create script for templates

parent 6b05d144
No related branches found
No related tags found
No related merge requests found
......@@ -24,3 +24,30 @@ CREATE TABLE tx_sgmail_domain_model_mail (
KEY parent (pid)
);
#
# Table structure for table 'tx_sgmail_domain_model_template'
#
CREATE TABLE tx_sgmail_domain_model_template (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
subject text DEFAULT '' NOT NULL,
extension_key varchar(255) NOT NULL,
template_name varchar(255) NOT NULL,
language varchar(30) NOT NULL,
content text DEFAULT '' NOT NULL,
CONSTRAINT uc_TemplateID UNIQUE (extension_key,template_name,language),
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,
PRIMARY KEY (uid),
KEY parent (pid)
);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment