Logging table for table to be logged
This file contains 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 table logging_address | |
( | |
like address EXCLUDING CONSTRAINTS, | |
operation char(10) not null, | |
date_operated timestamp with time zone not null default current_timestamp | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment