Created
February 21, 2025 00:35
-
-
Save mattmc3/687484bc39512ef736927269784e1f72 to your computer and use it in GitHub Desktop.
Add audit fields to pg table
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
ALTER TABLE public.mytable | |
ADD COLUMN add_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, | |
ADD COLUMN add_user VARCHAR(255) NOT NULL DEFAULT current_user, | |
ADD COLUMN change_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, | |
ADD COLUMN change_user VARCHAR(255) NOT NULL DEFAULT current_user; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment