Class: CreateDispatches

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/forge/db/migrate/20130405172039_create_dispatches.rb

Instance Method Summary collapse

Instance Method Details

#downObject



89
90
91
92
93
94
95
96
97
# File 'lib/forge/db/migrate/20130405172039_create_dispatches.rb', line 89

def down
  drop_table :dispatch_bounces
  drop_table :dispatch_link_clicks
  drop_table :dispatch_links
  drop_table :dispatch_opens
  drop_table :dispatch_unsubscribes
  drop_table :dispatches
  drop_table :queued_dispatches
end

#upObject



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/forge/db/migrate/20130405172039_create_dispatches.rb', line 2

def up
  create_table "dispatch_bounces" do |t|
    t.integer  "dispatch_id"
    t.integer  "subscriber_id"
    t.string   "bounce_code"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index "dispatch_bounces", ["dispatch_id"], :name => "index_dispatch_bounces_on_dispatch_id"
  add_index "dispatch_bounces", ["subscriber_id"], :name => "index_dispatch_bounces_on_subscriber_id"

  create_table "dispatch_link_clicks" do |t|
    t.integer  "dispatch_link_id"
    t.string   "ip"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index "dispatch_link_clicks", ["dispatch_link_id"], :name => "index_dispatch_link_clicks_on_dispatch_link_id"

  create_table "dispatch_links" do |t|
    t.integer  "dispatch_id"
    t.string   "uri"
    t.integer  "position"
    t.integer  "clicks_count", :default => 0
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index "dispatch_links", ["clicks_count"], :name => "index_dispatch_links_on_clicks_count"
  add_index "dispatch_links", ["dispatch_id"], :name => "index_dispatch_links_on_dispatch_id"

  create_table "dispatch_opens" do |t|
    t.integer  "dispatch_id"
    t.string   "email"
    t.string   "ip"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index "dispatch_opens", ["created_at"], :name => "index_dispatch_opens_on_created_at"
  add_index "dispatch_opens", ["dispatch_id"], :name => "index_dispatch_opens_on_dispatch_id"

  create_table "dispatch_unsubscribes" do |t|
    t.integer  "dispatch_id"
    t.string   "email"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index "dispatch_unsubscribes", ["dispatch_id"], :name => "index_dispatch_unsubscribes_on_dispatch_id"

  create_table "dispatches" do |t|
    t.string   "subject"
    t.text     "content"
    t.datetime "sent_at"
    t.integer  "creator_id"
    t.integer  "updater_id"
    t.datetime "created_at"
    t.datetime "updated_at"
    t.integer  "queued_message_count"
    t.integer  "sent_message_count"
    t.integer  "failed_message_count"
    t.integer  "opened_message_count"
    t.text     "display_content"
  end

  add_index "dispatches", ["creator_id"], :name => "index_dispatches_on_creator_id"
  add_index "dispatches", ["updater_id"], :name => "index_dispatches_on_updater_id"

  create_table "queued_dispatches" do |t|
    t.integer  "dispatch_id"
    t.integer  "subscriber_id"
    t.datetime "sent_at"
    t.integer  "failed_attempts",     :default => 0
    t.datetime "opened_at"
    t.datetime "last_failed_attempt"
    t.text     "last_error"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index "queued_dispatches", ["dispatch_id"], :name => "index_queued_dispatches_on_dispatch_id"
  add_index "queued_dispatches", ["subscriber_id"], :name => "index_queued_dispatches_on_subscriber_id"
end