From f0347b1c23f1090ac15f3b4abab06f7a8062c32c Mon Sep 17 00:00:00 2001 From: mgabdev <> Date: Wed, 5 Aug 2020 22:51:49 -0500 Subject: [PATCH] Updated status_bookmark model MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Updated: - status_bookmark model definitions --- app/models/status_bookmark.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/models/status_bookmark.rb b/app/models/status_bookmark.rb index 5af71cf2..ecdc01d0 100644 --- a/app/models/status_bookmark.rb +++ b/app/models/status_bookmark.rb @@ -3,11 +3,11 @@ # # Table name: status_bookmarks # -# id :integer not null, primary key +# id :bigint(8) not null, primary key # created_at :datetime not null # updated_at :datetime not null -# account_id :integer not null -# status_id :integer not null +# account_id :bigint(8) not null +# status_id :bigint(8) not null # class StatusBookmark < ApplicationRecord @@ -21,4 +21,4 @@ class StatusBookmark < ApplicationRecord before_validation do self.status = status.reblog if status&.reblog? end -end \ No newline at end of file +end