Skip to content

Commit c118822

Browse files
committed
Remove notification token from users
1 parent 5131274 commit c118822

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class RemoveNotificationTokenFromUsers < ActiveRecord::Migration
2+
def change
3+
remove_column :users, :notification_token
4+
end
5+
end

db/schema.rb

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
# It's strongly recommended that you check this file into your version control system.
1313

14-
ActiveRecord::Schema.define(version: 20170424151417) do
14+
ActiveRecord::Schema.define(version: 20170424160339) do
1515

1616
# These are extensions that must be enabled in order to support this database
1717
enable_extension "plpgsql"
@@ -90,7 +90,6 @@
9090
t.string "token"
9191
t.string "preferred_username"
9292
t.string "upload_token"
93-
t.string "notification_token"
9493
t.string "registration_ids", default: [], array: true
9594
end
9695

0 commit comments

Comments
 (0)