ext_tables.sql 431 B

123456789101112131415
  1. # ext_tables.sql contient les directives permettant d ajouter des tables et champs à la DB
  2. #
  3. # Table structure for table 'tx_opentalent_router'
  4. #
  5. CREATE TABLE tx_opentalent_router (
  6. uid INT UNSIGNED NOT NULL AUTO_INCREMENT,
  7. domain VARCHAR(2048) NOT NULL,
  8. root_uid INT UNSIGNED NOT NULL,
  9. slug VARCHAR(2048) NOT NULL,
  10. page_uid INT UNSIGNED NOT NULL,
  11. last_update DATETIME NOT NULL,
  12. PRIMARY KEY (uid)
  13. );