From 552a7d52a39a71d4ee859aaade268c7141acb37a Mon Sep 17 00:00:00 2001 From: Gabriel Grubba <70247653+Grubba27@users.noreply.github.com> Date: Fri, 25 Oct 2024 05:50:53 -0300 Subject: [PATCH] DEV: Update plugin annotations (#130) --- app/models/discourse_activity_pub_activity.rb | 4 ++-- app/models/discourse_activity_pub_follow.rb | 4 ++-- app/models/discourse_activity_pub_object.rb | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/models/discourse_activity_pub_activity.rb b/app/models/discourse_activity_pub_activity.rb index aec1e73a..891aef7c 100644 --- a/app/models/discourse_activity_pub_activity.rb +++ b/app/models/discourse_activity_pub_activity.rb @@ -164,8 +164,8 @@ def find_base_object(current_object) # ap_key :string # ap_type :string not null # local :boolean -# actor_id :integer not null -# object_id :integer +# actor_id :bigint not null +# object_id :bigint # object_type :string # summary :string # published_at :datetime diff --git a/app/models/discourse_activity_pub_follow.rb b/app/models/discourse_activity_pub_follow.rb index dbeb7944..e6593365 100644 --- a/app/models/discourse_activity_pub_follow.rb +++ b/app/models/discourse_activity_pub_follow.rb @@ -14,8 +14,8 @@ def followed_at # Table name: discourse_activity_pub_follows # # id :bigint not null, primary key -# follower_id :integer not null -# followed_id :integer not null +# follower_id :bigint not null +# followed_id :bigint not null # created_at :datetime not null # updated_at :datetime not null # diff --git a/app/models/discourse_activity_pub_object.rb b/app/models/discourse_activity_pub_object.rb index 058cfeb1..eaafeeb3 100644 --- a/app/models/discourse_activity_pub_object.rb +++ b/app/models/discourse_activity_pub_object.rb @@ -184,7 +184,7 @@ def likes_collection # created_at :datetime not null # updated_at :datetime not null # reply_to_id :string -# collection_id :integer +# collection_id :bigint # published_at :datetime # url :string # domain :string