Skip to content
Snippets Groups Projects
Commit 462b6f01 authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[BUGFIX] Fix invalid default values in sg_mail

parent ac9eccc6
No related branches found
No related tags found
No related merge requests found
#
# Table structure for table 'tx_sgmail_domain_model_mail'
#
CREATE TABLE tx_sgmail_domain_model_mail (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
......@@ -25,20 +22,16 @@ CREATE TABLE tx_sgmail_domain_model_mail (
PRIMARY KEY (uid),
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 NOT NULL,
extension_key varchar(255) DEFAULT NULL NOT NULL,
template_name varchar(255) DEFAULT NULL NOT NULL,
language varchar(30) DEFAULT NULL NOT NULL,
extension_key varchar(255) DEFAULT '' NOT NULL,
template_name varchar(255) DEFAULT '' NOT NULL,
language varchar(30) DEFAULT '' NOT NULL,
content text NOT NULL,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
......@@ -51,5 +44,4 @@ CREATE TABLE tx_sgmail_domain_model_template (
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