diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2018-01-09 20:59:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-09 20:59:04 +0100 |
commit | 33721a71e39d5a228ae3cd7949fa83198dc3eaa9 (patch) | |
tree | c082b86ad57d581ad094f475c4347a28d33ede60 /guides/source | |
parent | baa88b8ddff59b10b8e98eeee7503e2416da8abe (diff) | |
parent | e32eda6adfa929efb77aabebc6beeeb0d89a82bd (diff) | |
download | rails-33721a71e39d5a228ae3cd7949fa83198dc3eaa9.tar.gz rails-33721a71e39d5a228ae3cd7949fa83198dc3eaa9.tar.bz2 rails-33721a71e39d5a228ae3cd7949fa83198dc3eaa9.zip |
Merge pull request #31534 from claudiob/kaspth-approach
Don't include Active Storage migrations in new apps
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_storage_overview.md | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/guides/source/active_storage_overview.md b/guides/source/active_storage_overview.md index ec90e44358..f45dbdee3e 100644 --- a/guides/source/active_storage_overview.md +++ b/guides/source/active_storage_overview.md @@ -41,9 +41,6 @@ application to Rails 5.2, run `rails active_storage:install` to generate a migration that creates these tables. Use `rails db:migrate` to run the migration. -You need not run `rails active_storage:install` in a new Rails 5.2 application: -the migration is generated automatically. - Declare Active Storage services in `config/storage.yml`. For each service your application uses, provide a name and the requisite configuration. The example below declares three services named `local`, `test`, and `amazon`: |