fix index

This commit is contained in:
albert
2013-03-31 15:08:54 -04:00
parent a234bf0836
commit b751aaf7cf

View File

@@ -1,7 +1,7 @@
class AddPixivIdToPosts < ActiveRecord::Migration
def up
execute "set statement_timeout = 0"
remove_index :posts, :pixiv_id
# remove_index :posts, :pixiv_id
add_column :posts, :pixiv_id, :integer
execute "create index index_posts_on_pixiv_id on posts (pixiv_id) where pixiv_id is not null"
end