You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now pgroll only supports adding generated columns to new tables. When you add a new generated column, PostgreSQL has to update all rows in the table. This can be resource intensive and may lead to downtime.
We must add a proper migration to support this case. We can either improve add_column operation or introduce a new operation.
The text was updated successfully, but these errors were encountered:
Right now pgroll only supports adding generated columns to new tables. When you add a new generated column, PostgreSQL has to update all rows in the table. This can be resource intensive and may lead to downtime.
We must add a proper migration to support this case. We can either improve
add_column
operation or introduce a new operation.The text was updated successfully, but these errors were encountered: