From e4bc6e7e62a77ede8615a135a710f62ef2ce9135 Mon Sep 17 00:00:00 2001 From: Vijay Joshi Date: Fri, 6 Sep 2024 12:51:37 +0530 Subject: [PATCH] INFRA-3703 : Add created and updated by cloumn to team (#453) * INFRA-3703 : Add created and updated by cloumn to team * INFRA-3703 : Add if not exists --- db/migration/000032_add_team_created_updated_by.up.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 db/migration/000032_add_team_created_updated_by.up.sql diff --git a/db/migration/000032_add_team_created_updated_by.up.sql b/db/migration/000032_add_team_created_updated_by.up.sql new file mode 100644 index 0000000..8d5d3b9 --- /dev/null +++ b/db/migration/000032_add_team_created_updated_by.up.sql @@ -0,0 +1,3 @@ +ALTER TABLE team + ADD COLUMN IF NOT EXISTS created_by character varying(50), + ADD COLUMN IF NOT EXISTS updated_by character varying(50); \ No newline at end of file