This commit is contained in:
KMY 2024-05-10 07:07:50 +09:00
parent 10eec0e102
commit d7c13bf443
8 changed files with 59 additions and 17 deletions

View file

@ -53,8 +53,8 @@
# indexable :boolean default(FALSE), not null
# master_settings :jsonb
# remote_pending :boolean default(FALSE), not null
# avatar_file_size :bigint(8)
# header_file_size :bigint(8)
# avatar_file_size :integer
# header_file_size :integer
#
class Account < ApplicationRecord

View file

@ -23,7 +23,7 @@
# aliases :jsonb
# is_sensitive :boolean default(FALSE), not null
# license :string
# image_file_size :bigint(8)
# image_file_size :integer
#
class CustomEmoji < ApplicationRecord

View file

@ -14,7 +14,7 @@
# data_updated_at :datetime
# account_id :bigint(8) not null
# overwrite :boolean default(FALSE), not null
# data_file_size :bigint(8)
# data_file_size :integer
#
# NOTE: This is a deprecated model, only kept to not break ongoing imports

View file

@ -25,8 +25,8 @@
# thumbnail_content_type :string
# thumbnail_updated_at :datetime
# thumbnail_remote_url :string
# file_file_size :bigint(8)
# thumbnail_file_size :bigint(8)
# file_file_size :integer
# thumbnail_file_size :integer
#
class MediaAttachment < ApplicationRecord

View file

@ -31,7 +31,7 @@
# link_type :integer
# published_at :datetime
# image_description :string default(""), not null
# image_file_size :bigint(8)
# image_file_size :integer
#
class PreviewCard < ApplicationRecord

View file

@ -13,7 +13,7 @@
# created_at :datetime not null
# updated_at :datetime not null
# blurhash :string
# file_file_size :bigint(8)
# file_file_size :integer
#
class SiteUpload < ApplicationRecord