Class: CreateRecipients

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/homing/templates/create_recipients.rb

Class Method Summary collapse

Class Method Details

.downObject



12
13
14
# File 'lib/generators/homing/templates/create_recipients.rb', line 12

def self.down
  drop_table :recipients
end

.upObject



2
3
4
5
6
7
8
9
10
# File 'lib/generators/homing/templates/create_recipients.rb', line 2

def self.up
  create_table :recipients do |t|
    t.string :state
    t.references :email
    t.references :campaign

    t.timestamps
  end
end