diaspora/db/migrate/20110604012703_drop_mongo_remains.rb
2011-06-03 18:32:35 -07:00

18 lines
469 B
Ruby

class DropMongoRemains < ActiveRecord::Migration
def self.up
remove_index :aspects, :mongo_id
remove_index :comments, :mongo_id
remove_index :contacts, :mongo_id
remove_index :invitations, :mongo_id
remove_index :people, :mongo_id
remove_index :posts, :mongo_id
remove_index :profiles, :mongo_id
remove_index :services, :mongo_id
remove_index :users, :mongo_id
drop_table :mongo_notifications
end
def self.down
end
end