3 -- Host: bal747f Database: yatta
4 ---------------------------------------------------------
5 -- Server version 4.0.12-log
10 -- Table structure for table 'procesos'
13 CREATE TABLE procesos (
14 id bigint(20) NOT NULL auto_increment,
16 script varchar(255) NOT NULL,
17 id_sistema bigint(20) NOT NULL,
18 descripcion text NOT NULL,
19 pid int(10) default NULL,
20 server int(10) default NULL,
21 status tinyint(1) default NULL,
22 owner varchar(20) NOT NULL,
23 destinos varchar(255) default NULL,
24 prioridad tinyint(1) default 9,
25 scheduling varchar(50) default NULL,
26 notificar tinyint(1) default 1,
27 resultado varchar(255) default NULL,
33 -- Table structure for table 'servidores'
36 CREATE TABLE servidores (
37 id int(10) NOT NULL auto_increment,
38 nombre varchar (20) NOT NULL,
39 escala tinyint(1) default 9,
40 p_en_espera int(10) default 0,