blob: c7c6f7f8ab48bc92b6da333a0b2fa3fda2eb97a7 (
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
26
|
# == Schema Information
# Schema version: 78
#
# 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.7 2009-06-26 14:28:37 francis Exp $
class EximLogDone < ActiveRecord::Base
has_many :exim_logs
end
|