ext_tables.sql 347 B

123456789101112131415
  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 'pages'
  10. #
  11. CREATE TABLE tt_content (
  12. manually_deleted smallint(5) unsigned NOT NULL DEFAULT 0
  13. );