| 12345678910111213 |
- CREATE TABLE tx_chatbotui_domain_model_type (
- type varchar(255) NOT NULL DEFAULT ''
- );
- CREATE TABLE tx_chatbotui_domain_model_category (
- category varchar(255) NOT NULL DEFAULT ''
- );
- CREATE TABLE tx_chatbotui_domain_model_terms (
- type int(11) unsigned DEFAULT '0',
- category int(11) unsigned DEFAULT '0',
- url int(11) unsigned DEFAULT '0'
- );
|