Noosfero/noosfero

View on GitHub
plugins/push_notification/db/migrate/20160109195305_create_device_tokens.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateDeviceTokens < ActiveRecord::Migration[5.1]
  def change
    create_table :push_notification_plugin_device_tokens do |t|
      t.integer :user_id, null: false
      t.string :device_name, null: false
      t.string :token, null: false, unique: true
      t.timestamps null: false
      t.index :user_id
    end
  end
end