diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2008-12-17 22:21:05 +1030 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2008-12-17 22:21:05 +1030 |
commit | 9b2dd332f12902c520f7148f6380d313252613d8 (patch) | |
tree | 8221bfebcaf2d9ee39868c40779701041c956476 /railties/doc | |
parent | fd117c52fa471e20263518f0b9c165fb2de41d1a (diff) | |
download | rails-9b2dd332f12902c520f7148f6380d313252613d8.tar.gz rails-9b2dd332f12902c520f7148f6380d313252613d8.tar.bz2 rails-9b2dd332f12902c520f7148f6380d313252613d8.zip |
Correct one instance of table syntax.
Diffstat (limited to 'railties/doc')
-rw-r--r-- | railties/doc/guides/source/testing_rails_applications.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/railties/doc/guides/source/testing_rails_applications.txt b/railties/doc/guides/source/testing_rails_applications.txt index 57f8610063..cb77829fc1 100644 --- a/railties/doc/guides/source/testing_rails_applications.txt +++ b/railties/doc/guides/source/testing_rails_applications.txt @@ -229,15 +229,15 @@ NOTE: +db:test:prepare+ will fail with an error if db/schema.rb doesn't exists. ==== Rake Tasks for Preparing your Application for Testing ==== [grid="all"] ------------------------------------------------------------------------------------- -Tasks Description ------------------------------------------------------------------------------------- -+rake db:test:clone+ Recreate the test database from the current environment's database schema -+rake db:test:clone_structure+ Recreate the test databases from the development structure -+rake db:test:load+ Recreate the test database from the current +schema.rb+ -+rake db:test:prepare+ Check for pending migrations and load the test schema -+rake db:test:purge+ Empty the test database. ------------------------------------------------------------------------------------- +|------------------------------------------------------------------------------------ +|Tasks Description +|------------------------------------------------------------------------------------ +|+rake db:test:clone+ Recreate the test database from the current environment's database schema +|+rake db:test:clone_structure+ Recreate the test databases from the development structure +|+rake db:test:load+ Recreate the test database from the current +schema.rb+ +|+rake db:test:prepare+ Check for pending migrations and load the test schema +|+rake db:test:purge+ Empty the test database. +|------------------------------------------------------------------------------------ TIP: You can see all these rake tasks and their descriptions by running +rake \-\-tasks \-\-describe+ |