Sha256: b8eae399494a6a120b88fb841be76d09b31163e4376775b03014ff4546e57206
Contents?: true
Size: 613 Bytes
Versions: 11
Compression:
Stored size: 613 Bytes
Contents
class CreateNotifiableNotifications < ActiveRecord::Migration[4.2] def change create_table :notifiable_notifications do |t| t.references :app #stats t.integer :sent_count, :default => 0 t.integer :gateway_accepted_count, :default => 0 t.integer :opened_count, :default => 0 # notification properties t.text :message t.text :parameters t.string :sound # apns t.string :identifier t.datetime :expiry t.boolean :content_available t.boolean :mutable_content t.timestamps end end end
Version data entries
11 entries across 11 versions & 1 rubygems