Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
sg_jobs
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
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_jobs
Commits
dce1922f
Commit
dce1922f
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
ca72dbd6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!23
Feature upgrade to typo3 10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ext_tables.sql
+6
-223
6 additions, 223 deletions
ext_tables.sql
with
6 additions
and
223 deletions
ext_tables.sql
+
6
−
223
View file @
dce1922f
CREATE
TABLE
tx_sgjobs_domain_model_job
(
uid
int
(
11
)
NOT
NULL
auto_increment
,
pid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
-- Custom fields
path_segment
text
DEFAULT
''
NOT
NULL
,
title
text
DEFAULT
''
NOT
NULL
,
job_id
varchar
(
30
)
DEFAULT
''
NOT
NULL
,
...
...
@@ -27,127 +23,18 @@ CREATE TABLE tx_sgjobs_domain_model_job (
contact
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
featured_offer
tinyint
(
4
)
unsigned
DEFAULT
'0'
NOT
NULL
,
hide_apply_by_email
tinyint
(
4
)
unsigned
DEFAULT
'0'
NOT
NULL
,
hide_apply_by_postal
tinyint
(
4
)
unsigned
DEFAULT
'0'
NOT
NULL
,
-- TYPO3 fields
sorting
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
starttime
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
endtime
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
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
,
-- TYPO3 workspace fields
t3ver_oid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_id
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_wsid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_label
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
t3ver_state
tinyint
(
4
)
DEFAULT
'0'
NOT
NULL
,
t3ver_stage
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_count
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_tstamp
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_move_id
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3_origuid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
-- TYPO3 multi language fields
sys_language_uid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
l10n_parent
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
l10n_diffsource
mediumblob
,
tx_languagevisibility_visibility
text
NOT
NULL
,
PRIMARY
KEY
(
uid
),
KEY
parent
(
pid
),
KEY
t3ver_oid
(
t3ver_oid
,
t3ver_wsid
),
KEY
language
(
l10n_parent
,
sys_language_uid
)
hide_apply_by_postal
tinyint
(
4
)
unsigned
DEFAULT
'0'
NOT
NULL
);
CREATE
TABLE
tx_sgjobs_domain_model_department
(
uid
int
(
11
)
NOT
NULL
auto_increment
,
pid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
-- Custom fields
title
text
DEFAULT
''
NOT
NULL
,
-- TYPO3 fields
sorting
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
starttime
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
endtime
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
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
,
-- TYPO3 workspace fields
t3ver_oid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_id
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_wsid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_label
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
t3ver_state
tinyint
(
4
)
DEFAULT
'0'
NOT
NULL
,
t3ver_stage
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_count
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_tstamp
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_move_id
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3_origuid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
-- TYPO3 multi language fields
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
t3ver_oid
(
t3ver_oid
,
t3ver_wsid
),
KEY
language
(
l10n_parent
,
sys_language_uid
)
title
text
DEFAULT
''
NOT
NULL
);
CREATE
TABLE
tx_sgjobs_domain_model_experience_level
(
uid
int
(
11
)
NOT
NULL
auto_increment
,
pid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
-- Custom fields
title
text
DEFAULT
''
NOT
NULL
,
-- TYPO3 fields
sorting
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
starttime
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
endtime
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
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
,
-- TYPO3 workspace fields
t3ver_oid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_id
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_wsid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_label
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
t3ver_state
tinyint
(
4
)
DEFAULT
'0'
NOT
NULL
,
t3ver_stage
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_count
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_tstamp
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_move_id
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3_origuid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
-- TYPO3 multi language fields
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
t3ver_oid
(
t3ver_oid
,
t3ver_wsid
),
KEY
language
(
l10n_parent
,
sys_language_uid
)
title
text
DEFAULT
''
NOT
NULL
);
CREATE
TABLE
tx_sgjobs_domain_model_company
(
uid
int
(
11
)
NOT
NULL
auto_increment
,
pid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
-- Custom fields
city
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
zip
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
name
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
...
...
@@ -157,46 +44,10 @@ CREATE TABLE tx_sgjobs_domain_model_company (
description
text
DEFAULT
''
NOT
NULL
,
contact
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
job_id
text
DEFAULT
''
NOT
NULL
,
identifying_url
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
-- TYPO3 fields
sorting
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
starttime
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
endtime
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
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
,
-- TYPO3 workspace fields
t3ver_oid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_id
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_wsid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_label
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
t3ver_state
tinyint
(
4
)
DEFAULT
'0'
NOT
NULL
,
t3ver_stage
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_count
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_tstamp
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_move_id
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3_origuid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
-- TYPO3 multi language fields
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
t3ver_oid
(
t3ver_oid
,
t3ver_wsid
),
KEY
language
(
l10n_parent
,
sys_language_uid
)
identifying_url
varchar
(
255
)
DEFAULT
''
NOT
NULL
);
CREATE
TABLE
tx_sgjobs_domain_model_contact
(
uid
int
(
11
)
NOT
NULL
auto_increment
,
pid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
-- Custom fields
title
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
first_name
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
last_name
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
...
...
@@ -206,46 +57,10 @@ CREATE TABLE tx_sgjobs_domain_model_contact (
email
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
phone
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
image
int
(
11
)
unsigned
DEFAULT
'0'
,
hide_in_frontend
tinyint
(
4
)
unsigned
DEFAULT
'0'
NOT
NULL
,
-- TYPO3 fields
sorting
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
starttime
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
endtime
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
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
,
-- TYPO3 workspace fields
t3ver_oid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_id
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_wsid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_label
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
t3ver_state
tinyint
(
4
)
DEFAULT
'0'
NOT
NULL
,
t3ver_stage
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_count
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_tstamp
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_move_id
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3_origuid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
-- TYPO3 multi language fields
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
t3ver_oid
(
t3ver_oid
,
t3ver_wsid
),
KEY
language
(
l10n_parent
,
sys_language_uid
)
hide_in_frontend
tinyint
(
4
)
unsigned
DEFAULT
'0'
NOT
NULL
);
CREATE
TABLE
tx_sgjobs_domain_model_job_application
(
uid
int
(
11
)
NOT
NULL
auto_increment
,
pid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
-- Custom fields
job_id
text
DEFAULT
''
NOT
NULL
,
job
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
job_title
text
DEFAULT
''
NOT
NULL
,
...
...
@@ -267,37 +82,5 @@ CREATE TABLE tx_sgjobs_domain_model_job_application (
cover_letter
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
certificate
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
cv
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
privacy_policy
tinyint
(
4
)
unsigned
DEFAULT
'0'
NOT
NULL
,
-- TYPO3 fields
sorting
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
starttime
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
endtime
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
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
,
-- TYPO3 workspace fields
t3ver_oid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_id
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_wsid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_label
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
t3ver_state
tinyint
(
4
)
DEFAULT
'0'
NOT
NULL
,
t3ver_stage
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_count
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_tstamp
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3ver_move_id
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
t3_origuid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
-- TYPO3 multi language fields
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
t3ver_oid
(
t3ver_oid
,
t3ver_wsid
),
KEY
language
(
l10n_parent
,
sys_language_uid
)
privacy_policy
tinyint
(
4
)
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