Advertisement
Guest User

Untitled

a guest
Nov 16th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. drop table METODO_COBRO_SALUD_TIPO_PAGO;
  2. create table METODO_COBRO_SALUD_TIPO_PAGO (METODO_COBRO_SALUD_ID int8 not null, TIPO_PAGO_ID int8 not null);
  3. alter table METODO_COBRO_SALUD_TIPO_PAGO add constraint FKo9bg5muaauy044egwjp7g3cnl foreign key (TIPO_PAGO_ID) references TIPO_PAGO;
  4. alter table METODO_COBRO_SALUD_TIPO_PAGO add constraint FK6gyt7u657pkm6b1hb26kx13tl foreign key (METODO_COBRO_SALUD_ID) references METODO_COBRO_SALUD;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement