aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-09-11 04:18:07 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-09-11 04:18:07 +0000
commit4b53e26ef612d870a01e646c45bcc4198ad3bd1a (patch)
tree40231a895145e5e5774a5dfafc89aed8a863cd9c
parent4836c4081d62aa86267f1e1c76bae1c7b06e3f23 (diff)
downloadrails-4b53e26ef612d870a01e646c45bcc4198ad3bd1a.tar.gz
rails-4b53e26ef612d870a01e646c45bcc4198ad3bd1a.tar.bz2
rails-4b53e26ef612d870a01e646c45bcc4198ad3bd1a.zip
Fix fixture problem for pgsql
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2178 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--activerecord/test/fixtures/topics.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/fixtures/topics.yml b/activerecord/test/fixtures/topics.yml
index 9dd4799bab..313999b1ee 100644
--- a/activerecord/test/fixtures/topics.yml
+++ b/activerecord/test/fixtures/topics.yml
@@ -7,7 +7,7 @@ first:
last_read: 2004-04-15
bonus_time: 2005-01-30t15:28:00.00+01:00
content: Have a nice day
- approved: 0
+ approved: '0'
replies_count: 0
second:
@@ -16,6 +16,6 @@ second:
author_name: Mary
written_on: 2003-07-15t15:28:00.00+01:00
content: Have a nice day
- approved: 1
+ approved: '1'
replies_count: 2
parent_id: 1