Commit e69c983e58b8f260ef6fd1a114d0edbe1cd3c253

Authored by Rodrigo Souto
2 parents 2fa64d40 15d25a18

Merge commit 'refs/merge-requests/266' of git://gitorious.org/noosfero/noosfero …

…into merge-requests/266
db/migrate/20130117132943_remove_index_articles_on_name.rb 0 → 100644
... ... @@ -0,0 +1,9 @@
  1 +class RemoveIndexArticlesOnName < ActiveRecord::Migration
  2 + def self.up
  3 + remove_index :articles, :name
  4 + end
  5 +
  6 + def self.down
  7 + add_index :articles, :name
  8 + end
  9 +end
... ...