class CreateNotifiableLocalizedNotifications < ActiveRecord::Migration def change create_table :notifiable_localized_notifications do |t| t.text :message t.text :params t.string :locale t.references :notification # APNS - Optional #t.integer :badge #t.text :sound #t.datetime :expiry # MPNS - Optional #t.text :title t.timestamps end end end