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
de4dfce8
Commit
de4dfce8
authored
7 years ago
by
Torsten Oppermann
Browse files
Options
Downloads
Patches
Plain Diff
[TASK] Add tables for jobs, locations and contacts
parent
62e6a178
No related branches found
Branches containing commit
Tags
4.1.2
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ext_tables.sql
+94
-6
94 additions, 6 deletions
ext_tables.sql
with
94 additions
and
6 deletions
ext_tables.sql
+
94
−
6
View file @
de4dfce8
CREATE
TABLE
tx_sgjobs_domain_model_
base
(
CREATE
TABLE
tx_sgjobs_domain_model_
job
(
uid
int
(
11
)
NOT
NULL
auto_increment
,
pid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
-- Custom fields
text_field
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
image
text
NOT
NULL
,
text_area
text
NOT
NULL
,
text_area_with_rte
text
NOT
NULL
,
checkbox
tinyint
(
4
)
unsigned
DEFAULT
'0'
NOT
NULL
,
title
text
DEFAULT
''
NOT
NULL
,
subtitle
text
DEFAULT
''
NOT
NULL
,
start_date
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
company
text
DEFAULT
''
NOT
NULL
,
description
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
)
);
CREATE
TABLE
tx_sgjobs_domain_model_location
(
uid
int
(
11
)
NOT
NULL
auto_increment
,
pid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
-- Custom fields
city
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
country
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
description
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
)
);
CREATE
TABLE
tx_sgjobs_domain_model_contact
(
uid
int
(
11
)
NOT
NULL
auto_increment
,
pid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
-- Custom fields
first_name
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
last_name
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
company
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
city
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
zip
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
email
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
phone
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
-- TYPO3 fields
sorting
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