Sha256: 3893ce812512a4290e9604ada07cd31a0edf9ad1972756016022110afc4ee77b

Contents?: true

Size: 492 Bytes

Versions: 1

Compression:

Stored size: 492 Bytes

Contents

require 'active_record'

# == Schema Information
#
# Table name: sent_email_data
#
#  id            :integer          not null, primary key
#  uuid          :string
#  mailer_class  :string
#  mailer_action :string           not null
#  to            :string           not null
#  data          :text
#  created_at    :datetime
#  provider_message_id :string

module EmailEvents
  class SentEmailData < ActiveRecord::Base
    self.table_name = "sent_email_data"
    serialize :data
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
email_events-1.0 lib/email_events/models/sent_email_data.rb