aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/templates/rescues/invalid_statement.text.erb
Commit message (Collapse)AuthorAgeFilesLines
* Show friendly message to install action mailbox if the related table does ↵Prathamesh Sonpatki2019-03-121-0/+2
| | | | | | not exist - This is similar to the work done in https://github.com/rails/rails/pull/31534
* fix NameErrorkurosawat2019-02-051-1/+1
| | | | NameError: uninitialized constant ActionView::CompiledTemplates::ActiveStorage
* Recommend use of rails over bin/railsAlberto Almagro2018-07-061-1/+1
| | | | | | | | | As discussed in #33203 rails command already looks for, and runs, bin/rails if it is present. We were mixing recommendations within guides and USAGE guidelines, in some files we recommended using rails, in others bin/rails and in some cases we even had both options mixed together.
* Help if Active Storage tables are missingClaudio B2017-12-211-0/+13
When a user tries to create a new attachment or blog and the matching table is missing from the database (`active_storage_attachments` and `active_storage_blobs` by default), an informative error is displayed that invites users to run the `active_storage:install` task.