lumi-api/db/migrate/20190803170257_create_webpush_subscriptions.rb

17 lines
393 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
# Crear las suscripciones por webpush
class CreateWebpushSubscriptions < ActiveRecord::Migration[5.2]
def change
create_table :webpush_subscriptions do |t|
t.timestamps
t.belongs_to :pirata, index: true
t.string :auth
t.string :p256dh
t.string :endpoint
t.index %i[auth p256dh endpoint], unique: true
end
end
end