diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-01-18 22:44:15 -0200 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-01-19 00:12:30 -0200 |
commit | 96440042a904274b88afc25eddd46c2722482427 (patch) | |
tree | a3c71d722b2ed5b27cdc7081a15673fc82223486 /config | |
parent | bddef293d666c4b3933b93b017ae49bdf18b234f (diff) | |
download | gitlab-ce-96440042a904274b88afc25eddd46c2722482427.tar.gz |
Raise an error on page load if there are pending migrations on dev env
Diffstat (limited to 'config')
-rw-r--r-- | config/environments/development.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/environments/development.rb b/config/environments/development.rb index 257c163720a..689694a3480 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -16,6 +16,9 @@ Rails.application.configure do # Print deprecation notices to the Rails logger config.active_support.deprecation = :log + # Raise an error on page load if there are pending migrations + config.active_record.migration_error = :page_load + # Only use best-standards-support built into browsers config.action_dispatch.best_standards_support = :builtin |