From bdda56669664e8140db9db5cc3ae5f2ef6052ec6 Mon Sep 17 00:00:00 2001 From: Jacob Cody Wimer Date: Tue, 13 Nov 2018 16:12:49 +0000 Subject: [PATCH] Fixed sqlite deprication warning --- config/application.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/application.rb b/config/application.rb index bdf0de2..5ef7f5e 100644 --- a/config/application.rb +++ b/config/application.rb @@ -33,11 +33,11 @@ module Wrestling DeviseController.respond_to :html, :json end + config.active_record.sqlite3.represent_boolean_as_integer = true + config.autoload_paths += %W(#{config.root}/app/services/tournament_services) config.autoload_paths += %W(#{config.root}/app/services/wrestler_services) config.autoload_paths += %W(#{config.root}/app/services/weight_services) config.autoload_paths += %W(#{config.root}/app/services/bracket_advancement) - end - - + end end