Docfix (closes #8480)

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7104 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 8d8219cc
namespace :db do
desc 'Creates the databases defined in your config/database.yml (unless they already exist)'
desc 'Creates the databases defined in config/database.yml (unless they already exist)'
task :create => :environment do
ActiveRecord::Base.configurations.each_value do |config|
begin
......@@ -31,7 +31,7 @@ namespace :db do
ActiveRecord::Base.establish_connection(ActiveRecord::Base.configurations[RAILS_ENV || 'development'])
end
desc 'Drops the database for your currenet RAILS_ENV as defined in config/database.yml'
desc 'Drops the database for the current environment'
task :drop => :environment do
config = ActiveRecord::Base.configurations[RAILS_ENV || 'development']
case config['adapter']
......@@ -50,10 +50,10 @@ namespace :db do
Rake::Task["db:schema:dump"].invoke if ActiveRecord::Base.schema_format == :ruby
end
desc 'Drops, creates and then migrates the database for your current RAILS_ENV. Target specific version with VERSION=x'
desc 'Drops, creates and then migrates the database for the current environment. Target specific version with VERSION=x'
task :reset => ['db:drop', 'db:create', 'db:migrate']
desc "retrieve the charset for your database defined in your current RAILS_ENV"
desc "Retrieves the charset for the current environment's database"
task :charset => :environment do
config = ActiveRecord::Base.configurations[RAILS_ENV || 'development']
case config['adapter']
......@@ -65,7 +65,7 @@ namespace :db do
end
end
desc "retrieve the collation for your database"
desc "Retrieves the collation for the current environment's database"
task :collation => :environment do
config = ActiveRecord::Base.configurations[RAILS_ENV || 'development']
case config['adapter']
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册