blob: b3cdf27adc320a4932884bddc55426f94e0f3690 (
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
|
# == Schema Information
# Schema version: 75
#
# Table name: raw_emails
#
# id :integer not null, primary key
# data :text not null
#
# 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.10 2009-04-13 09:18:48 tony Exp $
class RawEmail < ActiveRecord::Base
# deliberately don't strip_attributes, so keeps raw email properly
has_one :incoming_message
end
|