Sha256: 454330a116702e1b765c041c034d98ab03ecdbaf3c03325036b6fc761c6a7857

Contents?: true

Size: 372 Bytes

Versions: 1

Compression:

Stored size: 372 Bytes

Contents

class CreateSentEmailData < ActiveRecord::Migration
   def change
     create_table :sent_email_data do |t|
      t.string :uuid, unique: true
      t.string :provider_message_id, :string
      t.string :mailer_class, null: false
      t.string :mailer_action,  null: false
      t.string :to, null: false
      t.text :data
      t.datetime :created_at
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
email_events-1.0 lib/generators/email_events/templates/create_sent_email_data.rb