aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/track_things_sent_email.rb
diff options
context:
space:
mode:
authorfrancis <francis>2008-04-01 16:40:37 +0000
committerfrancis <francis>2008-04-01 16:40:37 +0000
commitbaa530c0c8f5fb1e12173fbfde8f722ebeffe5be (patch)
treed80dd72953de39723d3208f78247052352e85fb1 /app/models/track_things_sent_email.rb
parent708480da65908e38e00cfa1eaef9b7f04cc9a4a6 (diff)
Skeleton of tracking / alerting / email.
Diffstat (limited to 'app/models/track_things_sent_email.rb')
-rw-r--r--app/models/track_things_sent_email.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/app/models/track_things_sent_email.rb b/app/models/track_things_sent_email.rb
new file mode 100644
index 000000000..d177d427c
--- /dev/null
+++ b/app/models/track_things_sent_email.rb
@@ -0,0 +1,27 @@
+# == Schema Information
+# Schema version: 49
+#
+# Table name: track_things_sent_emails
+#
+# id :integer not null, primary key
+# track_thing_id :integer not null
+# info_request_event_id :integer
+# user_id :integer
+# public_body_id :integer
+#
+
+# models/track_things_sent_email.rb:
+# Record that alert has arrived.
+#
+# Copyright (c) 2008 UK Citizens Online Democracy. All rights reserved.
+# Email: francis@mysociety.org; WWW: http://www.mysociety.org/
+#
+# $Id: track_things_sent_email.rb,v 1.1 2008-04-01 16:40:37 francis Exp $
+
+class TrackThingsSentEmail < ActiveRecord::Base
+ belongs_to :info_request_event
+ belongs_to :user
+ belongs_to :public_body
+end
+
+