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