Primer Commit

This commit is contained in:
2023-06-08 11:55:59 -03:00
commit a269361962
432 changed files with 203156 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
--------------------------------------------------------
-- DDL for Table VERSION_REP_TECH
--------------------------------------------------------
CREATE TABLE "ENVX_OPER"."VERSION_REP_TECH"
( "ID_REP_TECH" NUMBER(*,0),
"ID_REPOSITORY" NUMBER(*,0),
"ID_DEPLOYING_TECH" NUMBER(*,0),
"ID_ENVIROMENT_TYPE" NUMBER(*,0),
"REPOSITORY_PATH" VARCHAR2(500 BYTE)
) SEGMENT CREATION DEFERRED
PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255
NOCOMPRESS LOGGING
TABLESPACE "APEX_3800503980117141" ;
COMMENT ON COLUMN "ENVX_OPER"."VERSION_REP_TECH"."ID_REP_TECH" IS 'identificador unico de la combinacion entre repositorios y tecnologia';
GRANT SELECT ON "ENVX_OPER"."VERSION_REP_TECH" TO "ENVX_AUDIT";