blob: b8a39033ac938be6505d467482abbc8006f47599 (
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: 95
#
# 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
|