Sha256: e688b35cacb864726c9bfb10a3be24b5e1c3e0f3e7740e8c34331a607926dc6a

Contents?: true

Size: 1.31 KB

Versions: 2

Compression:

Stored size: 1.31 KB

Contents

class CreateRapnsNotifications < ActiveRecord::Migration
  def self.up
    create_table :rapns_notifications do |t|
      t.integer   :badge,                 :null => true
      t.string    :device_token,          :null => false, :limit => 64
      t.string    :sound,                 :null => true,  :default => "1.aiff"
      t.string    :alert,                 :null => true
      t.text      :attributes_for_device, :null => true
      t.integer   :expiry,                :null => false, :default => 1.day.to_i
      t.boolean   :delivered,             :null => false, :default => false
      t.timestamp :delivered_at,          :null => true
      t.boolean   :failed,                :null => false, :default => false
      t.timestamp :failed_at,             :null => true
      t.integer   :error_code,            :null => true
      t.string    :error_description,     :null => true
      t.timestamp :deliver_after,         :null => true
      t.timestamps
    end

    add_index :rapns_notifications, [:delivered, :failed, :deliver_after], :name => 'index_rapns_notifications_multi'
  end

  def self.down
    if index_name_exists?(:rapns_notifications, 'index_rapns_notifications_multi', true)
      remove_index :rapns_notifications, :name => 'index_rapns_notifications_multi'
    end
    drop_table :rapns_notifications
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rpush-1.0.0-java lib/generators/templates/create_rapns_notifications.rb
rpush-1.0.0 lib/generators/templates/create_rapns_notifications.rb