Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
sg_mail
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TYPO3
sg_mail
Commits
462b6f01
Commit
462b6f01
authored
8 years ago
by
Stefan Galinski
Browse files
Options
Downloads
Patches
Plain Diff
[BUGFIX] Fix invalid default values in sg_mail
parent
ac9eccc6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ext_tables.sql
+3
-11
3 additions, 11 deletions
ext_tables.sql
with
3 additions
and
11 deletions
ext_tables.sql
+
3
−
11
View file @
462b6f01
#
#
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
)
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment