| 12345678910111213141516171819202122 |
- # ext_tables.sql contient les directives permettant d ajouter des tables et champs à la DB
- #
- # Table structure for table 'pages'
- #
- CREATE TABLE pages (
- manually_deleted smallint(5) unsigned NOT NULL DEFAULT 0
- );
- #
- # Table structure for table 'tt_content'
- #
- CREATE TABLE tt_content (
- manually_deleted smallint(5) unsigned NOT NULL DEFAULT 0
- );
- #
- # Table structure for table 'sys_filemounts'
- #
- CREATE TABLE sys_filemounts (
- organization_id int unsigned
- );
|