1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
class ActsAsXapianMigration < ActiveRecord::Migration
def self.up
create_table :acts_as_xapian_jobs do |t|
t.column :model, :string, :null => false
t.column :model_id, :integer, :null => false
t.column :action, :string, :null => false
end
add_index :acts_as_xapian_jobs, [:model, :model_id], :unique => true
remove_index :info_requests, :solr_up_to_date
remove_column :info_requests, :solr_up_to_date
InfoRequest.find(:all).each { |i| i.calculate_event_states; STDERR.puts "calculate_event_states " + i.id.to_s }
end
def self.down
drop_table :acts_as_xapian_jobs
add_column :info_requests, :solr_up_to_date, :boolean, :default => false, :null => false
add_index :info_requests, :solr_up_to_date
end
end
|