]> git.llucax.com Git - mecon/ai.git/blob - sql/servicio.sql
Se agrega el checkbox para abrir en ventana nueva.
[mecon/ai.git] / sql / servicio.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:49:04 ART 2003                               |
23 -- | Autor:  Leandro Lucarella <llucar@mecon.gov.ar>                    |
24 -- +--------------------------------------------------------------------+
25 --
26 -- $Id$
27 --
28
29 CREATE TABLE servicio (
30     servicio        INTEGER(11) UNSIGNED    NOT NULL default 0 AUTO_INCREMENT,
31     servicio_padre  INTEGER(11)             NOT NULL default 0,
32     nombre          VARCHAR(50)             NOT NULL default '',
33     icono           VARCHAR(255)            NOT NULL default '',
34     link            VARCHAR(255)            NOT NULL default '',
35     link_ayuda      VARCHAR(255)            NOT NULL default '',
36     descripcion     VARCHAR(255)            NOT NULL default '',
37     necesita_logueo TINYINT(1)              NOT NULL default 0,
38     habilitado      TINYINT(1)              NOT NULL default 1,
39     ventana_nueva   TINYINT(1)              NOT NULL default 0,
40     -- Para para determinar de que forma se muestran las cosas
41     -- control         VARCHAR(255)    NOT NULL default '',
42     PRIMARY KEY (servicio)
43 );