Se agrega tabla STATUS_SOLICITUD_EXPRESO#AL-4549

master
Fernando Uc 2024-10-08 10:09:46 -06:00
parent 1a5fedae45
commit 6def720779
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
-- CREATE TABLE/CREATE SEQUENCE
declare
object_exists exception;
pragma exception_init (object_exists , -00955);
begin
execute immediate 'CREATE TABLE "STATUS_SOLICITUD_EXPRESO" (
"STATUSSOLICITUDEXPRESO_ID" NUMBER(15, 0) NOT NULL PRIMARY KEY,
"DESCSTATUSSOLICITUDEXPRESO" VARCHAR2(30 BYTE),
"ACTIVO" NUMBER(1),
"FECMODIF" DATE,
"USUARIO_ID" NUMBER(7)
)';
exception when object_exists then null;
end;