From: vincent@cubedesigners.com Date: Mon, 2 May 2011 08:25:28 +0000 (+0000) Subject: (no commit message) X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=3855cfe4bb680818201b3109f28131378c7d1b2d;p=cubeextranet.git --- diff --git a/inc/commons/class.common.core.php b/inc/commons/class.common.core.php index b129542cf..b655155c4 100644 --- a/inc/commons/class.common.core.php +++ b/inc/commons/class.common.core.php @@ -395,6 +395,13 @@ class commonCore extends cubeCore { $db->book_short_url->index('index_book_short_url_long_url', 'BTREE', 'long_url'); $db->book_short_url->index('index_book_short_url_book_id', 'BTREE', 'book_id'); // . + // Table des collections de fluidbooks + $db->book_collection->collection_id('integer', 0, false); + $db->book_collection->nom('varchar', 64, false); + $db->book_collection->datas('text', 0, false); + $db->book_collection->proprietaire('integer', 0, false); + // Clés + $db->book_collection->primary('pk_book_collection', 'collection_id'); // Table des droits $db->ws_users_tree->utilisateur_id('integer', 0, false); $db->ws_users_tree->entreprise_id('integer', 0, false);