The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
298 B

  1. class CreateWebPushSubscriptions < ActiveRecord::Migration[5.1]
  2. def change
  3. create_table :web_push_subscriptions do |t|
  4. t.string :endpoint, null: false
  5. t.string :key_p256dh, null: false
  6. t.string :key_auth, null: false
  7. t.json :data
  8. t.timestamps
  9. end
  10. end
  11. end