aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/db_definitions/sqlite.sql
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2005-10-06 04:15:14 +0000
committerMichael Koziarski <michael@koziarski.com>2005-10-06 04:15:14 +0000
commit656fb866f91a87677ce501d3c9ad6aba9048d00f (patch)
treec6db1f2d6fc045aa428cc7575aec87e74f1f8957 /activerecord/test/fixtures/db_definitions/sqlite.sql
parent0639e1ca7c63afa79b54cc1eb73871026f9b473d (diff)
downloadrails-656fb866f91a87677ce501d3c9ad6aba9048d00f.tar.gz
rails-656fb866f91a87677ce501d3c9ad6aba9048d00f.tar.bz2
rails-656fb866f91a87677ce501d3c9ad6aba9048d00f.zip
Quote booleans according the rules defined by the adapter
* SQLite schema has been updated * Postgresql schema needs to be fixed too Simplify AR::Base#toggle to store the boolean, not the quoted value * expand the tests git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2474 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures/db_definitions/sqlite.sql')
-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 d5879c31d8..1f8a2614dd 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' INTEGER DEFAULT 1,
+ 'approved' boolean DEFAULT 'f',
'replies_count' INTEGER DEFAULT 0,
'parent_id' INTEGER DEFAULT NULL,
'type' VARCHAR(255) DEFAULT NULL