blob: e349b2e68897ec5aaf4d05675cd1abf218415351 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 mail server log file has been loaded in, see mail_server_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
|