Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/*========tur===================================================*/
2
/* DBMS name:     PostgreSQL 8                                  */
3
/* Criado em:     26/07/2017                                        */
4
/* Autor: Bruno Lopes Peixoto                                       */
5
/*==============================================================*/
6
 
7
SET search_path = sc_sec;
8
 
9
ALTER TABLE sec_estoque_auditoria ADD seq_cliente INT8 NULL;
10
 
11
ALTER TABLE sec_estoque_auditoria
12
   ADD CONSTRAINT fk_estoqueaudit_cliente FOREIGN KEY (seq_cliente)
13
      REFERENCES sec_cliente (seq_cliente)
14
      ON DELETE RESTRICT ON UPDATE RESTRICT;
15
 
16
 
17
SET search_path = public;