]> git.llucax.com Git - mecon/yatta.git/commitdiff
Se agrega al scrip de instalacion la tabla de cuotas excepcionales.
authorMartín Marrese <marrese@gmail.com>
Mon, 9 Feb 2004 19:40:00 +0000 (19:40 +0000)
committerMartín Marrese <marrese@gmail.com>
Mon, 9 Feb 2004 19:40:00 +0000 (19:40 +0000)
script/instalacion/generacion_base.sql

index 2dd20c3490fc1020134a21db3d26887b99721dac..80047428d37152b077ebad3b26bda3ce330fb6f1 100644 (file)
@@ -1,43 +1,52 @@
--- MySQL dump 8.22
+-- MySQL dump 9.10
 --
 -- Host: bal747f    Database: yatta
----------------------------------------------------------
+-- ------------------------------------------------------
 -- Server version      4.0.12-log
 
-use yatta;
+--
+-- Table structure for table `cuotas`
+--
+
+CREATE TABLE cuotas (
+  login varchar(20) NOT NULL default '',
+  cuota smallint(6) NOT NULL default '0',
+  PRIMARY KEY  (login)
+) TYPE=MyISAM;
 
 --
--- Table structure for table 'procesos'
+-- Table structure for table `procesos`
 --
 
 CREATE TABLE procesos (
-    id bigint(20) NOT NULL auto_increment,
-    fecha date NOT NULL,
-    script varchar(255) NOT NULL, 
-    id_sistema bigint(20) NOT NULL, 
-    descripcion text NOT NULL,
-    pid int(10) default NULL, 
-    server int(10) default NULL, 
-    status tinyint(1) default 0,
-    owner varchar(20) NOT NULL, 
-    destinos varchar(255) default NULL, 
-    prioridad tinyint(1) default 9,
-    scheduling varchar(50) default NULL,
-    notificar tinyint(1) default 1,
-    resultado varchar(255) default NULL, 
-    archivo varchar(255) default NULL, 
-    nota text default NULL,
-    PRIMARY KEY (id)
+  id bigint(20) NOT NULL auto_increment,
+  script varchar(255) NOT NULL default '',
+  id_sistema bigint(20) NOT NULL default '0',
+  descripcion text NOT NULL,
+  pid int(10) default NULL,
+  server int(10) default NULL,
+  status tinyint(1) default '0',
+  owner varchar(20) NOT NULL default '',
+  destinos varchar(255) default NULL,
+  prioridad tinyint(1) default '9',
+  scheduling varchar(50) default NULL,
+  notificar tinyint(1) default '1',
+  resultado varchar(255) default NULL,
+  archivo varchar(255) default NULL,
+  nota text,
+  fecha date NOT NULL default '0000-00-00',
+  activo int(1) default '1',
+  PRIMARY KEY  (id)
 ) TYPE=MyISAM;
 
 --
--- Table structure for table 'servidores'
+-- Table structure for table `servidores`
 --
 
 CREATE TABLE servidores (
-    id int(10) NOT NULL auto_increment,
-    nombre varchar (20) NOT NULL, 
-    escala integer(11) default 9,
-    procesos int(10) default 0,
-    PRIMARY KEY  (id)
+  id int(10) NOT NULL auto_increment,
+  nombre varchar(20) NOT NULL default '',
+  escala int(11) default NULL,
+  procesos int(10) default '0',
+  PRIMARY KEY  (id)
 ) TYPE=MyISAM;