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
adce64c8
Commit
adce64c8
authored
7 years ago
by
Torsten Oppermann
Browse files
Options
Downloads
Patches
Plain Diff
[TASK] Fixing min length of db fields
parent
861331b2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!3
New version 4 1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ext_tables.sql
+4
-4
4 additions, 4 deletions
ext_tables.sql
with
4 additions
and
4 deletions
ext_tables.sql
+
4
−
4
View file @
adce64c8
...
...
@@ -10,12 +10,12 @@ CREATE TABLE tx_sgmail_domain_model_mail (
cc_addresses
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
bcc_addresses
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
priority
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
extension_key
varchar
(
30
)
DEFAULT
''
NOT
NULL
,
template_name
varchar
(
30
)
DEFAULT
''
NOT
NULL
,
reply_to
varchar
(
30
)
DEFAULT
''
NOT
NULL
,
extension_key
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
template_name
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
reply_to
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
sending_time
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
last_sending_time
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
language
varchar
(
30
)
DEFAULT
''
NOT
NULL
,
language
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
tstamp
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
crdate
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
...
...
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