ext_tables.sql 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. CREATE TABLE tx_begriffmgt_domain_model_term (
  2. uid int(11) unsigned NOT NULL AUTO_INCREMENT,
  3. pid int(11) DEFAULT '0' NOT NULL,
  4. tstamp int(11) unsigned DEFAULT '0' NOT NULL,
  5. crdate int(11) unsigned DEFAULT '0' NOT NULL,
  6. cruser_id int(11) DEFAULT '0' NOT NULL,
  7. deleted tinyint(1) unsigned DEFAULT '0' NOT NULL,
  8. hidden tinyint(1) unsigned DEFAULT '0' NOT NULL,
  9. type int(11) DEFAULT '0',
  10. category int(11) DEFAULT '0',
  11. url int(11) DEFAULT '0',
  12. term text NOT NULL DEFAULT '',
  13. PRIMARY KEY (uid)
  14. );
  15. CREATE TABLE tx_begriffmgt_domain_model_category (
  16. uid int(11) unsigned NOT NULL AUTO_INCREMENT,
  17. pid int(11) DEFAULT '0' NOT NULL,
  18. tstamp int(11) unsigned DEFAULT '0' NOT NULL,
  19. crdate int(11) unsigned DEFAULT '0' NOT NULL,
  20. cruser_id int(11) DEFAULT '0' NOT NULL,
  21. deleted tinyint(1) unsigned DEFAULT '0' NOT NULL,
  22. hidden tinyint(1) unsigned DEFAULT '0' NOT NULL,
  23. title varchar(255) NOT NULL,
  24. terms text DEFAULT '',
  25. PRIMARY KEY (uid)
  26. );
  27. CREATE TABLE tx_begriffmgt_domain_model_type (
  28. uid int(11) unsigned NOT NULL AUTO_INCREMENT,
  29. pid int(11) DEFAULT '0' NOT NULL,
  30. tstamp int(11) unsigned DEFAULT '0' NOT NULL,
  31. crdate int(11) unsigned DEFAULT '0' NOT NULL,
  32. cruser_id int(11) DEFAULT '0' NOT NULL,
  33. deleted tinyint(1) unsigned DEFAULT '0' NOT NULL,
  34. hidden tinyint(1) unsigned DEFAULT '0' NOT NULL,
  35. title varchar(255) NOT NULL,
  36. terms text DEFAULT '',
  37. PRIMARY KEY (uid)
  38. );
  39. CREATE TABLE tx_begriffmgt_domain_model_url (
  40. uid int(11) unsigned NOT NULL AUTO_INCREMENT,
  41. pid int(11) DEFAULT '0' NOT NULL,
  42. tstamp int(11) unsigned DEFAULT '0' NOT NULL,
  43. crdate int(11) unsigned DEFAULT '0' NOT NULL,
  44. cruser_id int(11) DEFAULT '0' NOT NULL,
  45. deleted tinyint(1) unsigned DEFAULT '0' NOT NULL,
  46. hidden tinyint(1) unsigned DEFAULT '0' NOT NULL,
  47. title varchar(255) NOT NULL,
  48. terms text DEFAULT '',
  49. PRIMARY KEY (uid)
  50. );