From 3855cfe4bb680818201b3109f28131378c7d1b2d Mon Sep 17 00:00:00 2001 From: "vincent@cubedesigners.com" Date: Mon, 2 May 2011 08:25:28 +0000 Subject: [PATCH] --- inc/commons/class.common.core.php | 7 +++++++ 1 file changed, 7 insertions(+) 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); -- 2.39.5