diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-04-03 10:52:05 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-04-03 10:52:05 +0000 |
commit | abc895b82829657d34f4902ce0cf04f0682bab63 (patch) | |
tree | df164ff14acac26c22a3205331a5ae4898f05d03 /activerecord/test/fixtures/db_definitions | |
parent | 17e5035bc566815b8aa8c192fec97a781f726938 (diff) | |
download | rails-abc895b82829657d34f4902ce0cf04f0682bab63.tar.gz rails-abc895b82829657d34f4902ce0cf04f0682bab63.tar.bz2 rails-abc895b82829657d34f4902ce0cf04f0682bab63.zip |
Added new Base.find API and deprecated find_all, find_first. Added preliminary support for eager loading of associations
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1077 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures/db_definitions')
-rw-r--r-- | activerecord/test/fixtures/db_definitions/sqlite.drop.sql | 4 | ||||
-rw-r--r-- | activerecord/test/fixtures/db_definitions/sqlite.sql | 18 |
2 files changed, 21 insertions, 1 deletions
diff --git a/activerecord/test/fixtures/db_definitions/sqlite.drop.sql b/activerecord/test/fixtures/db_definitions/sqlite.drop.sql index 1f611c8d5a..3fd60de17b 100644 --- a/activerecord/test/fixtures/db_definitions/sqlite.drop.sql +++ b/activerecord/test/fixtures/db_definitions/sqlite.drop.sql @@ -15,4 +15,6 @@ DROP TABLE mixins; DROP TABLE people; DROP TABLE binaries; DROP TABLE computers; - +DROP TABLE posts; +DROP TABLE comments; +DROP TABLE authors; diff --git a/activerecord/test/fixtures/db_definitions/sqlite.sql b/activerecord/test/fixtures/db_definitions/sqlite.sql index d57c3889e0..a6f2efcbfe 100644 --- a/activerecord/test/fixtures/db_definitions/sqlite.sql +++ b/activerecord/test/fixtures/db_definitions/sqlite.sql @@ -116,3 +116,21 @@ CREATE TABLE 'computers' ( 'developer' INTEGER NOT NULL ); +CREATE TABLE 'posts' ( + 'id' INTEGER NOT NULL PRIMARY KEY, + 'title' VARCHAR(255) NOT NULL, + 'body' TEXT NOT NULL +); + +CREATE TABLE 'comments' ( + 'id' INTEGER NOT NULL PRIMARY KEY, + 'post_id' INTEGER NOT NULL, + 'body' TEXT NOT NULL +); + +CREATE TABLE 'authors' ( + 'id' INTEGER NOT NULL PRIMARY KEY, + 'post_id' INTEGER NOT NULL, + 'name' VARCHAR(255) NOT NULL +); + |