The code powering m.abunchtell.com https://m.abunchtell.com
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

13 linhas
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