Sha256: 28d4fe5bf36d38cd489f79cc90a74beefd907df4ca33dd519300310bfe32d671

Contents?: true

Size: 730 Bytes

Versions: 1

Compression:

Stored size: 730 Bytes

Contents

class <%= migration_class_name %> < ActiveRecord::Migration<%= migration_version %>
  def change
    create_table :ahoy_messages do |t|
      t.string :token

      # user
      t.text :to
      t.integer :user_id
      t.string :user_type

      # optional - feel free to remove
      t.string :mailer
      t.text :subject
      # t.text :content

      # optional
      # t.string :utm_source
      # t.string :utm_medium
      # t.string :utm_term
      # t.string :utm_content
      # t.string :utm_campaign

      # timestamps
      t.timestamp :sent_at
      t.timestamp :opened_at
      t.timestamp :clicked_at
    end

    add_index :ahoy_messages, [:token]
    add_index :ahoy_messages, [:user_id, :user_type]
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ahoy_email-0.5.0 lib/generators/ahoy_email/templates/install.rb