Type:
Module
Constants:
LOCAL_HOSTS : ['127.0.0.1', 'localhost']

ActiveRecord::Tasks::DatabaseTasks is a utility class, which encapsulates logic behind common tasks used to manage database and migrations.

The tasks defined here are used in rake tasks provided by Active Record.

In order to use DatabaseTasks, a few config values need to be set. All the needed config values are set by Rails already, so it's necessary to do it only if you want to change the defaults or when you want to use Active Record outside of Rails (in such case after configuring the database tasks, you can also use the rake tasks defined in Active Record).

The possible config values are:

1
2
3
4
5
6
7
* +env+: current environment (like Rails.env).
* +database_configuration+: configuration of your databases (as in +config/database.yml+).
* +db_dir+: your +db+ directory.
* +fixtures_path+: a path to fixtures directory.
* +migrations_paths+: a list of paths to directories with migrations.
* +seed_loader+: an object which will load seeds, it needs to respond to the +load_seed+ method.
* +root+: a path to the root of the application.

Example usage of DatabaseTasks outside Rails could look as such:

1
2
3
4
5
6
include ActiveRecord::Tasks
DatabaseTasks.database_configuration = YAML.load(File.read('my_database_config.yml'))
DatabaseTasks.db_dir = 'db'
# other settings...
 
DatabaseTasks.create_current('production')
drop
  • References/Ruby on Rails/Rails/Classes/ActiveRecord/ActiveRecord::Tasks/ActiveRecord::Tasks::DatabaseTasks

drop(*arguments) Instance Public methods

2025-01-10 15:47:30
purge
  • References/Ruby on Rails/Rails/Classes/ActiveRecord/ActiveRecord::Tasks/ActiveRecord::Tasks::DatabaseTasks

purge(configuration) Instance Public methods

2025-01-10 15:47:30
structure_dump
  • References/Ruby on Rails/Rails/Classes/ActiveRecord/ActiveRecord::Tasks/ActiveRecord::Tasks::DatabaseTasks

structure_dump(*arguments) Instance Public methods

2025-01-10 15:47:30
env
  • References/Ruby on Rails/Rails/Classes/ActiveRecord/ActiveRecord::Tasks/ActiveRecord::Tasks::DatabaseTasks

env() Instance Public methods

2025-01-10 15:47:30
migrations_paths
  • References/Ruby on Rails/Rails/Classes/ActiveRecord/ActiveRecord::Tasks/ActiveRecord::Tasks::DatabaseTasks

migrations_paths() Instance Public methods

2025-01-10 15:47:30