diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-05-24 11:32:49 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-05-24 11:32:49 +0100 |
commit | b89fe3a3b65cad4d6cf0c044b2569e0ea8e8e163 (patch) | |
tree | eae48c2c62721fce953ec827d84d047de9081389 /app/models/info_request.rb | |
parent | 4ea0ba482c7931f420ae32ae99531aad1fc30739 (diff) |
Further annotation corrections
Diffstat (limited to 'app/models/info_request.rb')
-rw-r--r-- | app/models/info_request.rb | 43 |
1 files changed, 22 insertions, 21 deletions
diff --git a/app/models/info_request.rb b/app/models/info_request.rb index a6e108970..47398dabb 100644 --- a/app/models/info_request.rb +++ b/app/models/info_request.rb @@ -1,3 +1,25 @@ +# == Schema Information +# Schema version: 114 +# +# Table name: info_requests +# +# id :integer not null, primary key +# title :text not null +# user_id :integer not null +# public_body_id :integer not null +# created_at :datetime not null +# updated_at :datetime not null +# described_state :string(255) not null +# awaiting_description :boolean default(FALSE), not null +# prominence :string(255) default("normal"), not null +# url_title :text not null +# law_used :string(255) default("foi"), not null +# allow_new_responses_from :string(255) default("anybody"), not null +# handle_rejected_responses :string(255) default("bounce"), not null +# idhash :string(255) not null +# attention_requested :boolean default(FALSE) +# + require 'digest/sha1' @@ -1052,24 +1074,3 @@ public end end -# == Schema Information -# -# Table name: info_requests -# -# id :integer not null, primary key -# title :text not null -# user_id :integer not null -# public_body_id :integer not null -# created_at :datetime not null -# updated_at :datetime not null -# described_state :string(255) not null -# awaiting_description :boolean default(FALSE), not null -# prominence :string(255) default("normal"), not null -# url_title :text not null -# law_used :string(255) default("foi"), not null -# allow_new_responses_from :string(255) default("anybody"), not null -# handle_rejected_responses :string(255) default("bounce"), not null -# idhash :string(255) not null -# attention_requested :boolean default(FALSE) -# - |