diff options
author | Jenkins <jenkins@jenkins.ninjawedding.org> | 2017-12-07 04:17:14 +0000 |
---|---|---|
committer | Jenkins <jenkins@jenkins.ninjawedding.org> | 2017-12-07 04:17:14 +0000 |
commit | 744447b3c04d7806e383f0d1ad7a10c73bd667ef (patch) | |
tree | 640d74c3586dfe3114b7db3fdb97e2e3d8490843 /app/models | |
parent | de5620995175b7c1c0fc458bd78c12d8c5860aad (diff) | |
parent | 0c4ca3e549865623fdd35764915814acc8a595e1 (diff) |
Merge remote-tracking branch 'tootsuite/master' into glitchsoc/master
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/preview_card.rb | 1 | ||||
-rw-r--r-- | app/models/session_activation.rb | 10 |
2 files changed, 1 insertions, 10 deletions
diff --git a/app/models/preview_card.rb b/app/models/preview_card.rb index e2bf65d94..5baddba8a 100644 --- a/app/models/preview_card.rb +++ b/app/models/preview_card.rb @@ -21,6 +21,7 @@ # height :integer default(0), not null # created_at :datetime not null # updated_at :datetime not null +# embed_url :string default(""), not null # class PreviewCard < ApplicationRecord 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 |