We have deployed a table to higher environment and used in required objects to perform operations, we want t o add 2 columns to it . How can we achieve this , also will there be any impact on the objects as its already in higher environments .
Discussion posts and replies are publicly visible
I do not understand what your actual question is. Please explain your ask in more detail.
- I want to add new columns to a DB table which is already deployed to Production and being used in different places of our Application . If we alter the table and redeploy .How the objects which are already consuming it in production will affect .And how to handle it .
Only adding a field does not impact any object using this table. But, as long as the other objects are not updated, they will not populate the new fields.
Thanks you