Skip to content
Snippets Groups Projects
Commit 8ba4a76f authored by Bayu Samudra's avatar Bayu Samudra
Browse files

feat: staging adding timestamp

parent 4b9ca2fc
Branches
Tags
No related merge requests found
Pipeline #51342 passed with stages
in 1 minute and 50 seconds
-- +migrate Up
ALTER TABLE public."user"
ADD COLUMN created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
ADD COLUMN updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP;
-- +migrate Down
ALTER TABLE public."user"
DROP COLUMN created_at,
DROP COLUMN updated_at;
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment