blob: f4f22d122c50c6e70a150b614dc440281c2031fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# == Schema Information
# Schema version: 67
#
# Table name: raw_emails
#
# id :integer not null, primary key
# data :text
#
# models/raw_email.rb:
# The fat part of models/incoming_message.rb
#
# Copyright (c) 2008 UK Citizens Online Democracy. All rights reserved.
# Email: francis@mysociety.org; WWW: http://www.mysociety.org/
#
# $Id: raw_email.rb,v 1.2 2008-09-22 22:16:37 francis Exp $
class RawEmail < ActiveRecord::Base
has_one :incoming_message
end
|