mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 13:36:12 +02:00
tea/ext_tables.sql
2023-11-27 15:44:16 +01:00

9 lines
341 B
SQL

CREATE TABLE tx_tea_domain_model_product_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,
stars int(11) unsigned DEFAULT NULL,
KEY owner (owner)
);