Sha256: f639e11880da18a0f3fa7356a401c051dc51c2f0e58f4a645d6dc9f5aa7c6049
Contents?: true
Size: 364 Bytes
Versions: 33
Compression:
Stored size: 364 Bytes
Contents
class CreateMailLogs < ActiveRecord::Migration def self.up create_table :mail_logs do |t| t.string "mail_template_path" t.string "recipient" t.string "sender" t.string "subject" t.string "mime_type" t.text "raw_body" t.timestamps end end def self.down drop_table :mail_logs end end
Version data entries
33 entries across 17 versions & 1 rubygems