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
I tried to run rake db:migrate:down VERSION=xxx on a AR migration that used create_continuous_aggregate and it just tried to run create_continuous_aggregate again instead of dropping it.
It should either work, or it should raise irreversible migration error.
Further drop_continuous_aggregate did not exist, but drop_continuous_aggregate does exist.
Turns out alias_method entry is missing for drop_continuous_aggregate.
I tried to run
rake db:migrate:down VERSION=xxx
on a AR migration that used create_continuous_aggregate and it just tried to run create_continuous_aggregate again instead of dropping it.It should either work, or it should raise irreversible migration error.
Further drop_continuous_aggregate did not exist, but drop_continuous_aggregate does exist.
Turns out alias_method entry is missing for drop_continuous_aggregate.
timescaledb-ruby/lib/timescaledb/migration_helpers.rb
Line 126 in 81d2f97
The text was updated successfully, but these errors were encountered: