Add_index without needing to update the view #381
Answered
by
derekprior
stanleypliu
asked this question in
Q&A
-
I am confused about whether or not I need a new version of my materialized view if all I'm adding is an index to a column in it. Do I still need a new version, as well as the associated migration to update it? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
derekprior
Feb 3, 2023
Replies: 1 comment 1 reply
-
You do not need to update the view just to add an index. You can use a migration with |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
derekprior
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You do not need to update the view just to add an index. You can use a migration with
add_index
.