Commit inicial: fuentes MBS ERP (Genero 6) + .gitignore + docs/SETUP_PC_MBS.md

This commit is contained in:
2026-08-18 20:59:52 -04:00
commit 454973e269
5978 changed files with 2664094 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{ TABLE "informix".irtb00002 row size = 56 number of columns = 13 index size = 43
}
create table "informix".irtb00002
(
cod_n smallint not null ,
cod_grupo smallint not null ,
cod_tipo smallint not null ,
cod_sec smallint not null ,
existencia decimal(10,2),
exist_min decimal(10,2),
dia_llegada smallint,
categoria char(1),
status_t char(1),
us_crea char(9),
fech_crea datetime year to minute,
us_mod char(9),
fech_mod datetime year to minute
);
revoke all on "informix".irtb00002 from "public";
create index "informix".ircod on "informix".irtb00002 (cod_n,cod_grupo,cod_tipo,
cod_sec);
create index "informix".ircod1 on "informix".irtb00002 (cod_tipo);
create index "informix".ircod2 on "informix".irtb00002 (status_t);
create index "informix".idx5 on "informix".irtb00002 (cod_grupo);