Created
August 30, 2019 12:39
-
-
Save pixeltrix/54d3b9de1fc5dd7cdf0dbc796b73e39a to your computer and use it in GitHub Desktop.
Glue code required to get an Active Record rake task working outside of Rails
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rake' | |
require 'active_record' | |
require 'erb' | |
require 'yaml' | |
ActiveRecord::Tasks::DatabaseTasks.migrations_paths = [File.expand_path('db/migrate')] | |
module Rails | |
def self.env | |
'development' | |
end | |
end | |
load 'active_record/railties/databases.rake' | |
task :environment do | |
config = YAML.load(ERB.new(File.read('config/database.yml')).result) | |
ActiveRecord::Base.establish_connection(config[Rails.env]) | |
end | |
Rake::Task['db:migrate:status'].invoke |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment