aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/README.md
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-08-05 08:23:33 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-08-05 08:25:29 +0900
commit70d0e53db7e761eff321daa426a36c7cd8204984 (patch)
treefc112a338b4f6d1847ecb227219df2be83934d6a /activestorage/README.md
parent552840660389e39f3ba8e47dcf35ab817c01cb48 (diff)
downloadrails-70d0e53db7e761eff321daa426a36c7cd8204984.tar.gz
rails-70d0e53db7e761eff321daa426a36c7cd8204984.tar.bz2
rails-70d0e53db7e761eff321daa426a36c7cd8204984.zip
Fix repository URL [ci skip]
changed `rails/activestorage` to `rails/rails`.
Diffstat (limited to 'activestorage/README.md')
-rw-r--r--activestorage/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activestorage/README.md b/activestorage/README.md
index 22e77e2837..06594a3ecb 100644
--- a/activestorage/README.md
+++ b/activestorage/README.md
@@ -9,7 +9,7 @@ MiniMagick supported transformation.
## Compared to other storage solutions
-A key difference to how Active Storage works compared to other attachment solutions in Rails is through the use of built-in [Blob](https://github.com/rails/activestorage/blob/master/app/models/active_storage/blob.rb) and [Attachment](https://github.com/rails/activestorage/blob/master/app/models/active_storage/attachment.rb) models (backed by Active Record). This means existing application models do not need to be modified with additional columns to associate with files. Active Storage uses polymorphic associations via the join model of `Attachment`, which then connects to the actual `Blob`.
+A key difference to how Active Storage works compared to other attachment solutions in Rails is through the use of built-in [Blob](https://github.com/rails/rails/blob/master/activestorage/app/models/active_storage/blob.rb) and [Attachment](https://github.com/rails/rails/blob/master/activestorage/app/models/active_storage/attachment.rb) models (backed by Active Record). This means existing application models do not need to be modified with additional columns to associate with files. Active Storage uses polymorphic associations via the join model of `Attachment`, which then connects to the actual `Blob`.
These `Blob` models are intended to be immutable in spirit. One file, one blob. You can associate the same blob with multiple application models as well. And if you want to do transformations of a given `Blob`, the idea is that you'll simply create a new one, rather than attempt to mutate the existing (though of course you can delete that later if you don't need it).