Ensure that StringIO is always available for the Schema dumper. [Marcel Molina Jr.]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4315 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Marcel Molina
2006-04-30 02:40:06 +00:00
parent 3fec943aca
commit 68ab908716
2 changed files with 4 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
*SVN*
* Ensure that StringIO is always available for the Schema dumper. [Marcel Molina Jr.]
* Allow AR::Base#to_xml to include methods too. Closes #4921. [johan@textdrive.com]
* Replace superfluous name_to_class_name variant with camelize. [Marcel Molina Jr.]

View File

@@ -1,3 +1,5 @@
require 'stringio'
module ActiveRecord
# This class is used to dump the database schema for some connection to some
# output format (i.e., ActiveRecord::Schema).