Sha256: 047f01e3b8e8c0cce1df21fbf02229da51eb314ba66ff9fb521c997dd0a88e83

Contents?: true

Size: 319 Bytes

Versions: 1

Compression:

Stored size: 319 Bytes

Contents

class CreateFwtPushNotificationServerDeviceTokens < ActiveRecord::Migration
  
  def change
    create_table :fwt_push_notification_server_device_tokens do |t|
      t.string :token
      t.string :device_id
      t.string :device_name
      t.boolean :is_valid, :default => true

      t.timestamps
    end
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fwt_push_notification_server-0.0.6 lib/generators/fwt_push_notification_server/install/templates/create_fwt_push_notification_server_device_tokens.rb