ext_tables.sql 803 B

123456789101112131415161718192021222324252627282930313233
  1. # ext_tables.sql contient les directives permettant d ajouter des tables et champs à la DB
  2. #
  3. # Table structure for table 'pages'
  4. #
  5. CREATE TABLE pages (
  6. tx_opentalent_structure_id bigint,
  7. tx_opentalent_structure_domain varchar(255)
  8. );
  9. #
  10. # Table structure for table 'tx_opentalent_custom_domains'
  11. #
  12. CREATE TABLE tx_opentalent_custom_domains
  13. (
  14. uid INT UNSIGNED NOT NULL,
  15. organization_id INT NOT NULL,
  16. domain VARCHAR(2048) NOT NULL
  17. );
  18. #
  19. # Table structure for table 'tx_opentalent_log'
  20. #
  21. CREATE TABLE tx_opentalent_log (
  22. request_id varchar(13) DEFAULT '' NOT NULL,
  23. time_micro double(16,4) NOT NULL default '0.0000',
  24. component varchar(255) DEFAULT '' NOT NULL,
  25. level tinyint(1) unsigned DEFAULT '0' NOT NULL,
  26. message text,
  27. data text,
  28. KEY request (request_id)
  29. );