提交 26f88892 编写于 作者: J Jeremy Kemper

SQLite: db:create and drop

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6853 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 2be3a33f
......@@ -17,6 +17,10 @@ namespace :db do
ActiveRecord::Base.establish_connection(config)
when 'postgresql'
`createdb "#{config['database']}" -E utf8`
when 'sqlite'
`sqlite "#{config['database']}"`
when 'sqlite3'
`sqlite3 "#{config['database']}"`
end
end
end
......@@ -29,7 +33,7 @@ namespace :db do
case config['adapter']
when 'mysql'
ActiveRecord::Base.connection.drop_database config['database']
when 'sqlite3'
when /^sqlite/
FileUtils.rm_f File.join(RAILS_ROOT, config['database'])
when 'postgresql'
`dropdb "#{config['database']}"`
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册