Class: CreateAgilibPushNotification

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/active_record/templates/push_notification.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
10
11
# File 'lib/generators/active_record/templates/push_notification.rb', line 2

def change
  create_table :devices do |t|
    t.references :user
    t.string :platform
    t.string :register

    t.timestamps
  end
  add_index :devices, :user_id
end