blob: 4ac201d26beef5767e8ddedbbaf3e06d5599a132 (
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: 75
#
# 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.6 2009-04-13 09:18:48 tony Exp $
class EximLogDone < ActiveRecord::Base
has_many :exim_logs
end
|