diff options
Diffstat (limited to 'db/migrate/034_run_solr_indexing.rb')
-rw-r--r-- | db/migrate/034_run_solr_indexing.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/db/migrate/034_run_solr_indexing.rb b/db/migrate/034_run_solr_indexing.rb new file mode 100644 index 000000000..8a697905c --- /dev/null +++ b/db/migrate/034_run_solr_indexing.rb @@ -0,0 +1,8 @@ +class RunSolrIndexing < ActiveRecord::Migration + def self.up + PublicBody.rebuild_solr_index + end + + def self.down + end +end |