blob: c48fd4702494140da8574dd17e5d3d23ee403dea (
plain)
1
2
3
4
5
6
7
8
9
10
|
# -*- encoding : utf-8 -*-
class RunSolrIndexing < ActiveRecord::Migration
def self.up
# Not using SOLR yet after all
#PublicBody.rebuild_solr_index
end
def self.down
end
end
|