class CreatePushNotificationSubscribers < ActiveRecord::Migration[6.0]
  def change
    create_table :push_notification_subscribers do |t|
      t.references :user, type: :integer, null: false,
        foreign_key: { to_table: :Users, primary_key: :UserID }

      t.string :uuid, null: false
      t.integer :platform, null: false

      t.timestamps
    end
  end
end
