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
3f55dafd
Commit
3f55dafd
authored
8 years ago
by
Torsten Oppermann
Browse files
Options
Downloads
Patches
Plain Diff
[TASK] Adding new Table create script for templates
parent
6b05d144
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ext_tables.sql
+27
-0
27 additions, 0 deletions
ext_tables.sql
with
27 additions
and
0 deletions
ext_tables.sql
+
27
−
0
View file @
3f55dafd
...
...
@@ -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
)
);
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