1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix task description for db:sessions:create. Closes #9419 [topfunky]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7398 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Michael Koziarski 2007-09-02 23:52:24 +00:00
parent a79ac12c4e
commit 6b9b511de1

View file

@ -249,7 +249,7 @@ namespace :db do
end
namespace :sessions do
desc "Creates a sessions table for use with CGI::Session::ActiveRecordStore"
desc "Creates a sessions migration for use with CGI::Session::ActiveRecordStore"
task :create => :environment do
raise "Task unavailable to this database (no migration support)" unless ActiveRecord::Base.connection.supports_migrations?
require 'rails_generator'