From 389a667664c3a574b900c2bf539413daa0be67f5 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 19 Mar 2006 02:21:58 +0000 Subject: Small pgsql fixes (closes #4083) [pergesu@gmail.com] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3965 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/RUNNING_UNIT_TESTS | 2 +- activerecord/test/fixtures/db_definitions/postgresql.drop.sql | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/activerecord/RUNNING_UNIT_TESTS b/activerecord/RUNNING_UNIT_TESTS index 2d47078c65..a995bf3bab 100644 --- a/activerecord/RUNNING_UNIT_TESTS +++ b/activerecord/RUNNING_UNIT_TESTS @@ -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 diff --git a/activerecord/test/fixtures/db_definitions/postgresql.drop.sql b/activerecord/test/fixtures/db_definitions/postgresql.drop.sql index 01d620e708..2662839214 100644 --- a/activerecord/test/fixtures/db_definitions/postgresql.drop.sql +++ b/activerecord/test/fixtures/db_definitions/postgresql.drop.sql @@ -1,3 +1,4 @@ +DROP SEQUENCE accounts_id_seq; DROP TABLE accounts; DROP TABLE funny_jokes; DROP TABLE companies; -- cgit v1.2.3