]> git.llucax.com Git - mecon/yatta.git/blob - script/instalacion/generacion_base.sql
Se agrega al scrip de instalacion la tabla de cuotas excepcionales.
[mecon/yatta.git] / script / instalacion / generacion_base.sql
1 -- MySQL dump 9.10
2 --
3 -- Host: bal747f    Database: yatta
4 -- ------------------------------------------------------
5 -- Server version       4.0.12-log
6
7 --
8 -- Table structure for table `cuotas`
9 --
10
11 CREATE TABLE cuotas (
12   login varchar(20) NOT NULL default '',
13   cuota smallint(6) NOT NULL default '0',
14   PRIMARY KEY  (login)
15 ) TYPE=MyISAM;
16
17 --
18 -- Table structure for table `procesos`
19 --
20
21 CREATE TABLE procesos (
22   id bigint(20) NOT NULL auto_increment,
23   script varchar(255) NOT NULL default '',
24   id_sistema bigint(20) NOT NULL default '0',
25   descripcion text NOT NULL,
26   pid int(10) default NULL,
27   server int(10) default NULL,
28   status tinyint(1) default '0',
29   owner varchar(20) NOT NULL default '',
30   destinos varchar(255) default NULL,
31   prioridad tinyint(1) default '9',
32   scheduling varchar(50) default NULL,
33   notificar tinyint(1) default '1',
34   resultado varchar(255) default NULL,
35   archivo varchar(255) default NULL,
36   nota text,
37   fecha date NOT NULL default '0000-00-00',
38   activo int(1) default '1',
39   PRIMARY KEY  (id)
40 ) TYPE=MyISAM;
41
42 --
43 -- Table structure for table `servidores`
44 --
45
46 CREATE TABLE servidores (
47   id int(10) NOT NULL auto_increment,
48   nombre varchar(20) NOT NULL default '',
49   escala int(11) default NULL,
50   procesos int(10) default '0',
51   PRIMARY KEY  (id)
52 ) TYPE=MyISAM;