⚲
Project
General
Profile
Sign in
Home
Projects
Help
Search
:
TYPO3 Core
All Projects
TYPO3 Core
Overview
Activity
Roadmap
Issues
Repository
Download (445 Bytes)
Bug #97895
» ext_tables.sql
Davide Alghi
, 2022-07-11 14:48
CREATE
TABLE
tx_mytests_domain_model_parent
(
name
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
children
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
);
CREATE
TABLE
tx_mytests_domain_model_parent2child_relation
(
parent_uid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
child_uid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
sorting
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
);
CREATE
TABLE
tx_mytests_domain_model_child
(
name
varchar
(
255
)
DEFAULT
''
NOT
NULL
,
holder
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
);
« Previous
1
2
3
…
5
Next »
(1-1/5)
Loading...