Rails ActiveStorage - 通过 Rails 控制台访问
Rails ActiveStorage - accessing through Rails console
ActiveStorage 创建 2 tables active_storage_blobs
和 active_storage_attachments
。我想知道是否有一种方法可以通过 Rails 控制台轻松访问它们(即模式迁移内部 table 可以通过 ActiveRecord::SchemaMigration
访问)?
Rails 是开源的,fwiw。
Looks like it’d be ActiveStorage::Blob
and ActiveStorage::Attachment
.
ActiveStorage 创建 2 tables active_storage_blobs
和 active_storage_attachments
。我想知道是否有一种方法可以通过 Rails 控制台轻松访问它们(即模式迁移内部 table 可以通过 ActiveRecord::SchemaMigration
访问)?
Rails 是开源的,fwiw。
Looks like it’d be ActiveStorage::Blob
and ActiveStorage::Attachment
.