2018-05-25 16:19:12 +02:00
|
|
|
CREATE TABLE tx_tea_domain_model_product_tea (
|
|
|
|
uid int(11) NOT NULL auto_increment,
|
|
|
|
pid int(11) 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,
|
|
|
|
|
|
|
|
title varchar(255) DEFAULT '' NOT NULL,
|
|
|
|
description varchar(2000) DEFAULT '' NOT NULL,
|
2018-05-25 22:39:33 +02:00
|
|
|
image int(11) unsigned DEFAULT '0' NOT NULL,
|
2018-05-25 16:19:12 +02:00
|
|
|
|
|
|
|
PRIMARY KEY (uid),
|
|
|
|
KEY parent (pid)
|
|
|
|
);
|