Skip to content

Instantly share code, notes, and snippets.

@renerdias
Created April 23, 2019 21:35
Show Gist options
  • Save renerdias/7cbeb2809a3a80ea8bf41dcb2c30a8ae to your computer and use it in GitHub Desktop.
Save renerdias/7cbeb2809a3a80ea8bf41dcb2c30a8ae to your computer and use it in GitHub Desktop.
Cria o schema de auditoria e uma tabela com dados comuns de auditoria
create schema auditoria;
create table auditoria.ta_padrao (
id_auditoria bigint not null,
dt_auditoria timestamp not null,
op_auditoria char(1) not null,
pid int not null,
application_name text not null,
client_hostname text not null
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment