Chatwoot/lib/tasks/db_enhancements.rake
Sojan Jose fa04098c20
Chore: Run ConfigLoader on migrate (#1072)
We have been duplicating the config loader migration. Hence let's hook it to rake db:migrate.
2020-07-20 19:38:25 +05:30

5 lines
188 B
Ruby

# We are hooking config loader to run automatically everytime migration is executed
Rake::Task['db:migrate'].enhance do
puts 'Loading Installation config'
ConfigLoader.new.process
end