mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Small pgsql fixes (closes #4083) [pergesu@gmail.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3965 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
0925c6b6a0
commit
389a667664
2 changed files with 2 additions and 1 deletions
|
@ -15,7 +15,7 @@ connection.rb otherwise (on Postgres, at least) tests for default values will fa
|
|||
The easiest way to run the unit tests is through Rake. The default task runs
|
||||
the entire test suite for all the adapters. You can also run the suite on just
|
||||
one adapter by using the tasks test_mysql_ruby, test_ruby_mysql, test_sqlite,
|
||||
or test_postresql. For more information, checkout the full array of rake tasks with "rake -T"
|
||||
or test_postgresql. For more information, checkout the full array of rake tasks with "rake -T"
|
||||
|
||||
Rake can be found at http://rake.rubyforge.org
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
DROP SEQUENCE accounts_id_seq;
|
||||
DROP TABLE accounts;
|
||||
DROP TABLE funny_jokes;
|
||||
DROP TABLE companies;
|
||||
|
|
Loading…
Reference in a new issue