# == Schema Information # Schema version: 74 # # 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.9 2009-03-09 15:48:32 tony Exp $ class RawEmail < ActiveRecord::Base # deliberately don't strip_attributes, so keeps raw email properly has_one :incoming_message end