Advertisement
jotazetaec

Untitled

Aug 29th, 2023
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. CREATE TABLE esq_conv_2020.tbl_evento_pago (
  2.     idregistro int8 NULL,
  3.     tipo_pago text NULL,
  4.     valor float8 NULL,
  5.     n_comprobante text NULL,
  6.     id_banco int4 NULL,
  7.     fecha_transaccion timestamp NULL,
  8.     estado text NULL,
  9.     id_fichero_pago int8 NULL,
  10.     id_persona_valida int8 NULL,
  11.     apellido1 text NULL,
  12.     apellido2 text NULL,
  13.     nombres text NULL,
  14.     identificacion text NULL,
  15.     direccion text NULL,
  16.     celular text NULL,
  17.     fecha_registro timestamp NULL,
  18.     fecha_validacion timestamp NULL
  19. );
  20.  
  21. ALTER TABLE esq_conv_2020.tbl_ponencias ADD id_pago int8 NULL;
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement