Created
April 23, 2019 21:35
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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