aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema.rb
diff options
context:
space:
mode:
authorfrancis <francis>2008-02-15 11:18:55 +0000
committerfrancis <francis>2008-02-15 11:18:55 +0000
commit463e0e0af9c2abde77a8c29637606cc0aafa93e7 (patch)
tree1df145c56bbf5fb507c64b4e7194ea7c33daefba /db/schema.rb
parent5a668b0e3ffb76839f98a012efbcb8c72dffb217 (diff)
Prominence so can hide requests from list interface.
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb17
1 files changed, 9 insertions, 8 deletions
diff --git a/db/schema.rb b/db/schema.rb
index c01221291..ff159b5c4 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 => 32) do
+ActiveRecord::Schema.define(:version => 33) do
create_table "incoming_messages", :force => true do |t|
t.integer "info_request_id", :null => false
@@ -28,13 +28,14 @@ ActiveRecord::Schema.define(:version => 32) do
end
create_table "info_requests", :force => true do |t|
- t.text "title", :null => false
- t.integer "user_id", :null => false
- t.integer "public_body_id", :null => false
- t.datetime "created_at", :null => false
- t.datetime "updated_at", :null => false
- t.string "described_state", :null => false
- t.boolean "awaiting_description", :default => false, :null => false
+ t.text "title", :null => false
+ t.integer "user_id", :null => false
+ t.integer "public_body_id", :null => false
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ t.string "described_state", :null => false
+ t.boolean "awaiting_description", :default => false, :null => false
+ t.string "prominence", :default => "normal", :null => false
end
add_index "info_requests", ["created_at"], :name => "index_info_requests_on_created_at"