ext_tables.sql 593 B

1234567891011121314151617181920212223
  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_log'
  11. #
  12. CREATE TABLE tx_opentalent_log (
  13. request_id varchar(13) DEFAULT '' NOT NULL,
  14. time_micro double(16,4) NOT NULL default '0.0000',
  15. component varchar(255) DEFAULT '' NOT NULL,
  16. level tinyint(1) unsigned DEFAULT '0' NOT NULL,
  17. message text,
  18. data text,
  19. KEY request (request_id)
  20. );