+-- MySQL dump 9.07
+--
+-- Host: localhost Database: yatta
+---------------------------------------------------------
+-- Server version 4.0.12-log
+
+--
+-- Table structure for table 'cuotas'
+--
+
+DROP TABLE IF EXISTS 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'
+--
+
+DROP TABLE IF EXISTS procesos;
+CREATE TABLE procesos (
+ 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',
+ parametros text,
+ PRIMARY KEY (id)
+) TYPE=MyISAM;
+
+--
+-- Table structure for table 'servidores'
+--
+
+DROP TABLE IF EXISTS servidores;
+CREATE TABLE servidores (
+ 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;
+