diff options
author | francis <francis> | 2007-09-10 01:16:34 +0000 |
---|---|---|
committer | francis <francis> | 2007-09-10 01:16:34 +0000 |
commit | 022f7a0d72a7742875d9ba94ce33a4ec069d36dd (patch) | |
tree | b6f73df3c9c492425760969b4c2b42ba0e8a029b /db/schema.rb | |
parent | ab810950cb413715f1b7d211016d2791c16f1008 (diff) |
Ask for and save the public body which the request is for.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/db/schema.rb b/db/schema.rb index 8d159eae6..08043cd76 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -2,11 +2,12 @@ # migrations feature of ActiveRecord to incrementally modify your database, and # then regenerate this schema definition. -ActiveRecord::Schema.define(:version => 7) do +ActiveRecord::Schema.define(:version => 8) do create_table "info_requests", :force => true do |t| - t.column "title", :text - t.column "user_id", :integer + t.column "title", :text + t.column "user_id", :integer + t.column "public_body_id", :integer end create_table "public_bodies", :force => true do |t| |