mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-08 23:16:14 +01:00
eeda862e77
The `Product` namespace segment in the domain model namespace `TTN\Tea\Domain\Model` currently serves no purpose and only adds confusion. So let's simplify the extension structure accordingly. (I intended to use this to demonstrate DDD contexts, but never built enough models in the Tea extension for this to actually make sense.) Fixes #1008
8 lines
285 B
SQL
8 lines
285 B
SQL
CREATE TABLE tx_tea_domain_model_tea (
|
|
title varchar(255) DEFAULT '' NOT NULL,
|
|
description varchar(2000) DEFAULT '' NOT NULL,
|
|
image int(11) unsigned DEFAULT '0' NOT NULL,
|
|
owner int(11) unsigned DEFAULT '0' NOT NULL,
|
|
|
|
KEY owner (owner)
|
|
);
|