| 123456789101112131415161718192021222324 |
- # ext_tables.sql contient les directives permettant d ajouter des tables et champs à la DB
- #
- # Table structure for table 'pages'
- # Possible values for ot_page_type are : ROOT, MANDATORY_EDITABLE, MANDATORY_NON_EDITABLE, NON_MANDATORY, USER_CREATED
- #
- CREATE TABLE pages (
- manually_deleted smallint(5) unsigned NOT NULL DEFAULT 0,
- ot_page_type text DEFAULT 'USER_CREATED'
- );
- #
- # 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
- );
|