19 lines
435 B
SQL
19 lines
435 B
SQL
{ TABLE "informix".irtb00010 row size = 67 number of columns = 7 index size = 12 }
|
|
create table "informix".irtb00010
|
|
(
|
|
codigo integer,
|
|
nombre char(30),
|
|
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".irtb00010 from "public";
|
|
|
|
create unique index "informix".ix399_1 on "informix".irtb00010 (codigo);
|
|
|
|
|
|
|
|
|