diff options
author | francis <francis> | 2008-03-06 01:23:38 +0000 |
---|---|---|
committer | francis <francis> | 2008-03-06 01:23:38 +0000 |
commit | 8d7934d991e93097c981676630ac63a4465b96b5 (patch) | |
tree | 07069514f3a582b96f47e2adbb13f11f60171003 /db/schema.rb | |
parent | 91190cda0bca095412600d17d3d1225a48096397 (diff) |
First pass at indexing info requests with solr
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 58ddb696d..2965f7090 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -9,7 +9,7 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 40) do +ActiveRecord::Schema.define(:version => 41) do create_table "incoming_messages", :force => true do |t| t.integer "info_request_id", :null => false @@ -37,6 +37,7 @@ ActiveRecord::Schema.define(:version => 40) do t.boolean "awaiting_description", :default => false, :null => false t.string "prominence", :default => "normal", :null => false t.text "url_title", :null => false + t.boolean "solr_up_to_date", :default => false, :null => false end add_index "info_requests", ["created_at"], :name => "index_info_requests_on_created_at" |