docbrown/db/migrate/20180609191539_create_push_notification_subscriptions.rb
2018-06-09 17:33:58 -04:00

12 lines
No EOL
347 B
Ruby

class CreatePushNotificationSubscriptions < ActiveRecord::Migration[5.1]
def change
create_table :push_notification_subscriptions do |t|
t.string :endpoint
t.string :p256dh_key
t.string :auth_key
t.string :notification_type
t.references :user, foreign_key: true, null: false
t.timestamps
end
end
end