ext_tables.sql 346 B

12345678910111213
  1. CREATE TABLE tx_chatbotui_domain_model_type (
  2. type varchar(255) NOT NULL DEFAULT ''
  3. );
  4. CREATE TABLE tx_chatbotui_domain_model_category (
  5. category varchar(255) NOT NULL DEFAULT ''
  6. );
  7. CREATE TABLE tx_chatbotui_domain_model_terms (
  8. type int(11) unsigned DEFAULT '0',
  9. category int(11) unsigned DEFAULT '0',
  10. url int(11) unsigned DEFAULT '0'
  11. );