diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-03-09 08:51:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-09 08:51:12 +0100 |
commit | 318d34d528d8d4f9165bf9c1f873da68aadb90a2 (patch) | |
tree | 4fcbe1c0678fc37144635a68fae0d70f47d84f0b /app | |
parent | c0327ff31f839e1beae59486bf92d7e1c4689b06 (diff) |
Fix data integrity of featured tags (#17712)
Diffstat (limited to 'app')
-rw-r--r-- | app/models/featured_tag.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/featured_tag.rb b/app/models/featured_tag.rb index e02ae0705..74d62e777 100644 --- a/app/models/featured_tag.rb +++ b/app/models/featured_tag.rb @@ -4,8 +4,8 @@ # Table name: featured_tags # # id :bigint(8) not null, primary key -# account_id :bigint(8) -# tag_id :bigint(8) +# account_id :bigint(8) not null +# tag_id :bigint(8) not null # statuses_count :bigint(8) default(0), not null # last_status_at :datetime # created_at :datetime not null |