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')
create_all

create_all() Instance Public methods

2015-06-20 00:00:00
load_schema_current

load_schema_current(format = ActiveRecord::Base.schema_format, file = nil, environment = env) Instance Public methods

2015-06-20 00:00:00
create

create(*arguments) Instance Public methods

2015-06-20 00:00:00
collation

collation(*arguments) Instance Public methods

2015-06-20 00:00:00
db_dir

db_dir() Instance Public methods

2015-06-20 00:00:00
charset

charset(*arguments) Instance Public methods

2015-06-20 00:00:00
load_schema

load_schema(format = ActiveRecord::Base.schema_format, file = nil) Instance Public methods

2015-06-20 00:00:00
seed_loader

seed_loader() Instance Public methods

2015-06-20 00:00:00
drop_all

drop_all() 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