aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/db_definitions
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2005-10-06 21:52:47 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2005-10-06 21:52:47 +0000
commitbcb50f3c893e070caa3abf06bee03885f1601190 (patch)
tree4c03e74202e9328a4301076a27c5cb7d54ed32a3 /activerecord/test/fixtures/db_definitions
parentc2da5e57cd648e31f08760d8618843a945660060 (diff)
downloadrails-bcb50f3c893e070caa3abf06bee03885f1601190.tar.gz
rails-bcb50f3c893e070caa3abf06bee03885f1601190.tar.bz2
rails-bcb50f3c893e070caa3abf06bee03885f1601190.zip
sqlite topics.approved should default to true like the other dbs
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2480 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures/db_definitions')
-rw-r--r--activerecord/test/fixtures/db_definitions/sqlite.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/fixtures/db_definitions/sqlite.sql b/activerecord/test/fixtures/db_definitions/sqlite.sql
index 1f8a2614dd..ebc5cb3a37 100644
--- a/activerecord/test/fixtures/db_definitions/sqlite.sql
+++ b/activerecord/test/fixtures/db_definitions/sqlite.sql
@@ -24,7 +24,7 @@ CREATE TABLE 'topics' (
'bonus_time' TIME DEFAULT NULL,
'last_read' DATE DEFAULT NULL,
'content' TEXT,
- 'approved' boolean DEFAULT 'f',
+ 'approved' boolean DEFAULT 't',
'replies_count' INTEGER DEFAULT 0,
'parent_id' INTEGER DEFAULT NULL,
'type' VARCHAR(255) DEFAULT NULL