aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/templates/rescues/invalid_statement.html.erb
Commit message (Collapse)AuthorAgeFilesLines
* Show friendly message to install action mailbox if the related table does ↵Prathamesh Sonpatki2019-03-121-0/+3
| | | | | | 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
* Merge pull request #33229 from ↵Matthew Draper2018-07-251-1/+1
|\ | | | | | | | | albertoalmagro/albertoalmagro/prefer-rails-command-over-bin-rails Prefer rails command over bin/rails
| * 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.
* | Show nested exceptions on the debug viewYuki Nishijima2018-07-151-2/+2
|/
* Help if Active Storage tables are missingClaudio B2017-12-211-0/+21
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.