diff options
author | Matthew Landauer <matthew@openaustralia.org> | 2012-10-11 10:09:21 +1100 |
---|---|---|
committer | Matthew Landauer <matthew@openaustralia.org> | 2012-10-11 10:09:21 +1100 |
commit | e5dd06bb90b28b14b9a476d999d22ca345dabf07 (patch) | |
tree | fb801d4b883e13e7dd3e61eafc1694e6811bb4af /app/models/exim_log_done.rb | |
parent | de6e80be524f6e8488727306ffc97218f3ef7b5f (diff) |
Rename models and tables exim -> mail_server
Diffstat (limited to 'app/models/exim_log_done.rb')
-rw-r--r-- | app/models/exim_log_done.rb | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/app/models/exim_log_done.rb b/app/models/exim_log_done.rb deleted file mode 100644 index 3cedc1379..000000000 --- a/app/models/exim_log_done.rb +++ /dev/null @@ -1,26 +0,0 @@ -# == Schema Information -# Schema version: 114 -# -# Table name: exim_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 -# - -# models/exim_log_done.rb: -# 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 EximLogDone < ActiveRecord::Base - has_many :exim_logs -end - - - |