diff options
author | Robin Houston <robin.houston@gmail.com> | 2012-09-19 15:32:27 +0100 |
---|---|---|
committer | Robin Houston <robin.houston@gmail.com> | 2012-09-19 15:32:27 +0100 |
commit | 550f143a9c9be1ebdfe257fe853a2adf1e13973c (patch) | |
tree | 64890a49f5f567392bd1b7be7cc0c582329f66a9 /app/models/request_classification.rb | |
parent | dd533b28f1101a4150365bbd7f16f276396364e8 (diff) |
Add an option to disable comments on a request
Closes #30.
Diffstat (limited to 'app/models/request_classification.rb')
-rw-r--r-- | app/models/request_classification.rb | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/app/models/request_classification.rb b/app/models/request_classification.rb index 678b6cd16..f5a1b4bee 100644 --- a/app/models/request_classification.rb +++ b/app/models/request_classification.rb @@ -1,3 +1,15 @@ +# == Schema Information +# Schema version: 20120919140404 +# +# Table name: request_classifications +# +# id :integer not null, primary key +# user_id :integer +# info_request_event_id :integer +# created_at :datetime +# updated_at :datetime +# + class RequestClassification < ActiveRecord::Base belongs_to :user @@ -13,4 +25,4 @@ class RequestClassification < ActiveRecord::Base :include => :user) end -end
\ No newline at end of file +end |