diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2017-12-07 12:53:42 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-12-07 04:53:42 +0100 |
commit | 0c4ca3e549865623fdd35764915814acc8a595e1 (patch) | |
tree | bbf6e6d7d52122bf31f9a0454a132b15ac44bb65 | |
parent | c083816c2479dcdfa6674c47a75a8293bf64a947 (diff) |
Remove duplicate annotate (#5910)
* Remove duplicate annotate * Remove blank line
-rw-r--r-- | app/models/session_activation.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/app/models/session_activation.rb b/app/models/session_activation.rb index 8b711d0d6..1d4ebca02 100644 --- a/app/models/session_activation.rb +++ b/app/models/session_activation.rb @@ -14,16 +14,6 @@ # web_push_subscription_id :integer # -# id :bigint not null, primary key -# user_id :bigint not null -# session_id :string not null -# created_at :datetime not null -# updated_at :datetime not null -# user_agent :string default(""), not null -# ip :inet -# access_token_id :bigint -# - class SessionActivation < ApplicationRecord belongs_to :user, inverse_of: :session_activations, required: true belongs_to :access_token, class_name: 'Doorkeeper::AccessToken', dependent: :destroy |