Sha256: 6524f566dc15404843f58ba6d751b60f111d6388aabebf11df6e2a85dbf07b68
Contents?: true
Size: 405 Bytes
Versions: 13
Compression:
Stored size: 405 Bytes
Contents
class CreateNotifiableDeviceTokens < ActiveRecord::Migration def change create_table :notifiable_device_tokens do |t| t.string :token t.string :provider t.boolean :is_valid, :default => true t.integer :user_id t.references :app t.timestamps end add_index :notifiable_device_tokens, :token add_index :notifiable_device_tokens, :user_id end end
Version data entries
13 entries across 13 versions & 2 rubygems