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