Se agrega tabla STATUS_SOLICITUD_EXPRESO#AL-4549
parent
1a5fedae45
commit
6def720779
|
@ -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;
|
Loading…
Reference in New Issue