diff options
author | francis <francis> | 2007-12-11 12:16:29 +0000 |
---|---|---|
committer | francis <francis> | 2007-12-11 12:16:29 +0000 |
commit | 38732c1cd909d7566956aecb54187cbaec26309d (patch) | |
tree | 132fa2487b7c7ba73ba03b037fd41ec9d74b37cb /app/models/info_request.rb | |
parent | 77f2ceeb179b8143d0a34991fb64d0561007330d (diff) |
Annotate model files with their members.
Type "rake annotate_models" to do this.
Diffstat (limited to 'app/models/info_request.rb')
-rw-r--r-- | app/models/info_request.rb | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/app/models/info_request.rb b/app/models/info_request.rb index 910519add..c295a57a8 100644 --- a/app/models/info_request.rb +++ b/app/models/info_request.rb @@ -1,10 +1,23 @@ +# == Schema Information +# Schema version: 21 +# +# Table name: info_requests +# +# id :integer not null, primary key +# title :text +# user_id :integer +# public_body_id :integer +# created_at :datetime +# updated_at :datetime +# + # models/info_request.rb: # A Freedom of Information request. # # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: info_request.rb,v 1.15 2007-11-23 12:01:20 francis Exp $ +# $Id: info_request.rb,v 1.16 2007-12-11 12:16:29 francis Exp $ require 'digest/sha1' |