aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/mail_server_log_done.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/mail_server_log_done.rb')
-rw-r--r--app/models/mail_server_log_done.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/models/mail_server_log_done.rb b/app/models/mail_server_log_done.rb
new file mode 100644
index 000000000..0dcae37a8
--- /dev/null
+++ b/app/models/mail_server_log_done.rb
@@ -0,0 +1,25 @@
+# == Schema Information
+# Schema version: 20121010214348
+#
+# Table name: mail_server_log_dones
+#
+# id :integer not null, primary key
+# filename :text not null
+# last_stat :datetime not null
+# created_at :datetime not null
+# updated_at :datetime not null
+#
+
+# Stores that a particular exim file has been loaded in, see exim_log.rb
+#
+# Copyright (c) 2009 UK Citizens Online Democracy. All rights reserved.
+# Email: francis@mysociety.org; WWW: http://www.mysociety.org/
+#
+# $Id: exim_log_done.rb,v 1.8 2009-09-17 21:10:05 francis Exp $
+
+class MailServerLogDone < ActiveRecord::Base
+ has_many :mail_server_logs
+end
+
+
+