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
When I downloaded schema and data from Heroku to my dev machine, taps didn't create this three indexes (the first one is clearly problematic, the other two I'm not sure why they were ignored):
CREATEUNIQUE INDEXindex_users_on_tenant_id_and_lower_emailON users USING btree (tenant_id, lower((email)::text));
CREATEINDEXindex_users_on_tenant_id_and_state_and_created_atON users USING btree (tenant_id, state, created_at DESC);
CREATEINDEXindex_users_on_tenant_id_and_typeON users USING btree (tenant_id, type);
The text was updated successfully, but these errors were encountered:
heroku db:push and pull will soon be replaced with pg:push and pull, which won't use taps, so it wouldn't have this problem. It'll have all of its own, new problems! If you want a preview check out heroku/heroku-pg-extras#42
When I downloaded schema and data from Heroku to my dev machine, taps didn't create this three indexes (the first one is clearly problematic, the other two I'm not sure why they were ignored):
The text was updated successfully, but these errors were encountered: