taps icon indicating copy to clipboard operation
taps copied to clipboard

Taps seem be dropping the order of indexes

Open pupeno opened this issue 13 years ago • 1 comments

I have this index in production in Heroku:

CREATE INDEX index_posts_on_blog_id_and_status_and_created_at ON jobs USING btree (blog_id, status, created_at DESC);

and when I download the schema and data with taps, it ends in my local database like this:

CREATE INDEX index_posts_on_blog_id_and_status_and_created_at ON jobs USING btree (blog_id, status, created_at);

the order of created_at was lost.

pupeno avatar May 29 '12 11:05 pupeno

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 https://github.com/heroku/heroku-pg-extras/issues/42

will avatar Sep 03 '13 22:09 will