Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
sg_news
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD 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_news
Commits
a18f3642
Commit
a18f3642
authored
4 years ago
by
Kevin Ditscheid
Browse files
Options
Downloads
Patches
Plain Diff
[TASK] Remove fields that are auto generated by the schema manager
parent
4e21a5d3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!25
Feature upgrade to typo3 10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ext_tables.sql
+1
-27
1 addition, 27 deletions
ext_tables.sql
with
1 addition
and
27 deletions
ext_tables.sql
+
1
−
27
View file @
a18f3642
...
...
@@ -10,40 +10,14 @@ CREATE TABLE pages (
tx_sgnews_location
mediumtext
,
tx_sgnews_date_end
int
(
10
)
unsigned
DEFAULT
'0'
NOT
NULL
,
tx_sgnews_content_from_another_page
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
KEY
news_author
(
tx_sgnews_news_author
)
);
CREATE
TABLE
pages_language_overlay
(
tx_sgnews_teaser1_image
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
tx_sgnews_teaser2_image
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
tx_sgnews_location
mediumtext
);
CREATE
TABLE
tx_sgnews_domain_model_author
(
uid
int
(
11
)
NOT
NULL
auto_increment
,
pid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
-- Custom fields
name
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
email
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
description
text
,
website
text
,
path_segment
text
,
image
int
(
11
)
unsigned
DEFAULT
'0'
,
-- TYPO3 fields
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
,
sys_language_uid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
l10n_parent
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
l10n_diffsource
mediumblob
,
PRIMARY
KEY
(
uid
),
KEY
parent
(
pid
),
KEY
language
(
l10n_parent
,
sys_language_uid
)
image
int
(
11
)
unsigned
DEFAULT
'0'
);
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