The code powering m.abunchtell.com https://m.abunchtell.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

13 satır
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