From b3ad4f95ad12249d0f19006cfcc16634eedfa6db Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 1 Nov 2006 15:19:54 +0000 Subject: [PATCH] Ajout index et contraintes sur tables llx_boxes --- mysql/tables/llx_boxes.sql | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mysql/tables/llx_boxes.sql b/mysql/tables/llx_boxes.sql index 39a2ceb0990..f5ce9e9b52b 100644 --- a/mysql/tables/llx_boxes.sql +++ b/mysql/tables/llx_boxes.sql @@ -1,5 +1,6 @@ -- ============================================================================ -- Copyright (C) 2003 Rodolphe Quiedeville +-- Copyright (C) 2006 Laurent Destailleur -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by @@ -20,7 +21,7 @@ -- -- =========================================================================== -- --- position : 0-index.php, 1-left, 2-right +-- position : 0=index.php -- box_order : Box sort order -- @@ -30,5 +31,5 @@ create table llx_boxes box_id integer NOT NULL, position smallint NOT NULL, box_order smallint default 0 NOT NULL, - fk_user integer default 0 + fk_user integer default 0 NOT NULL )type=innodb;