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:

* +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:

include ActiveRecord::Tasks
DatabaseTasks.database_configuration = YAML.load(File.read('my_database_config.yml'))
DatabaseTasks.db_dir = 'db'
# other settings...

DatabaseTasks.create_current('production')
load_seed

load_seed() Instance Public methods

2015-06-20 00:00:00
collation_current

collation_current(environment = env) Instance Public methods

2015-06-20 00:00:00
current_config

current_config(options = {}) Instance Public methods

2015-06-20 00:00:00
check_schema_file

check_schema_file(filename) Instance Public methods

2015-06-20 00:00:00
drop_current

drop_current(environment = env) Instance Public methods

2015-06-20 00:00:00
structure_load

structure_load(*arguments) Instance Public methods

2015-06-20 00:00:00
purge

purge(configuration) Instance Public methods

2015-06-20 00:00:00
charset_current

charset_current(environment = env) Instance Public methods

2015-06-20 00:00:00
drop

drop(*arguments) Instance Public methods

2015-06-20 00:00:00
root

root() Instance Public methods

2015-06-20 00:00:00