Workaround

This commit is contained in:
redfast00 2019-05-11 15:20:06 +02:00
parent dd9efd0416
commit 051cd9a265
No known key found for this signature in database
GPG Key ID: 5946E0E34FD0553C
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ class CreateAndroidDeviceRegistrationTokens < ActiveRecord::Migration[5.2]
def change
create_table :android_device_registration_tokens do |t|
t.string :token
t.belongs_to :user, foreign_key: true
t.belongs_to :user, foreign_key: true, type: :integer
t.timestamps
end