ext_tables.sql 467 B

12345678910111213141516171819202122
  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. manually_deleted smallint(5) unsigned NOT NULL DEFAULT 0
  7. );
  8. #
  9. # Table structure for table 'tt_content'
  10. #
  11. CREATE TABLE tt_content (
  12. manually_deleted smallint(5) unsigned NOT NULL DEFAULT 0
  13. );
  14. #
  15. # Table structure for table 'sys_filemounts'
  16. #
  17. CREATE TABLE sys_filemounts (
  18. organization_id int unsigned
  19. );