Project

General

Profile

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,
);
(1-1/5)