aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/041_index_requests_with_solr.rb
blob: 6c6f161c9c30c5115647fc6e69a86b68399be709 (plain)
1
2
3
4
5
6
7
8
9
class IndexRequestsWithSolr < ActiveRecord::Migration
    def self.up
        add_column :info_requests, :solr_up_to_date, :boolean, :default => false, :null => false
    end

    def self.down
        remove_column :info_requests, :solr_up_to_date
    end
end