]> git.llucax.com Git - mecon/ai.git/blob - sql/grupo_secciones.sql
Se agrega método getGrupo().
[mecon/ai.git] / sql / grupo_secciones.sql
1 -- vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
2 -- +--------------------------------------------------------------------+
3 -- |                      Ministerio de Economía                        |
4 -- |                  AI (Administrador de Intranet)                    |
5 -- +--------------------------------------------------------------------+
6 -- | This file is part of AI.                                           |
7 -- |                                                                    |
8 -- | AI is free software; you can redistribute it and/or modify         |
9 -- | it under the terms of the GNU General Public License as published  |
10 -- | by the Free Software Foundation; either version 2 of the License,  |
11 -- | or (at your option) any later version.                             |
12 -- |                                                                    |
13 -- | AI is distributed in the hope that it will be useful, but          |
14 -- | WITHOUT ANY WARRANTY; without even the implied warranty of         |
15 -- | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   |
16 -- | General Public License for more details.                           |
17 -- |                                                                    |
18 -- | You should have received a copy of the GNU General Public License  |
19 -- | along with Hooks; if not, write to the Free Software Foundation,   |
20 -- | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA      |
21 -- +--------------------------------------------------------------------+
22 -- | Creado: mar jun 24 13:56:49 ART 2003                               |
23 -- | Autor:  Leandro Lucarella <llucar@mecon.gov.ar>                    |
24 -- +--------------------------------------------------------------------+
25 --
26 -- $Id$
27 --
28
29 CREATE TABLE grupo_secciones (
30     grupo           INTEGER(11) UNSIGNED    NOT NULL default 0 AUTO_INCREMENT,
31     grupo_padre     INTEGER(11)             NOT NULL default 0,
32     nombre          VARCHAR(50)             NOT NULL default '',
33     habilitado      TINYINT(1)              NOT NULL default 1,
34     antiguedad      INTEGER(2)              NOT NULL default 0, -- En días
35     mostrar_hijos   TINYINT(1)              NOT NULL default 1,
36     PRIMARY KEY (grupo)
37 );