diff options
author | francis <francis> | 2008-09-03 14:05:56 +0000 |
---|---|---|
committer | francis <francis> | 2008-09-03 14:05:56 +0000 |
commit | 3823e5cbc642d95a17fdb316736e7afe6334140c (patch) | |
tree | aaa186d9fc8fead8d777c78b98de87c02fc18ca2 /vendor/rails-2.1.0/actionpack/test/fixtures/developer.rb | |
parent | af7a374ae63935168df2bbc02288f54f52c701a5 (diff) |
Rails 2.1.0
Diffstat (limited to 'vendor/rails-2.1.0/actionpack/test/fixtures/developer.rb')
-rw-r--r-- | vendor/rails-2.1.0/actionpack/test/fixtures/developer.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/rails-2.1.0/actionpack/test/fixtures/developer.rb b/vendor/rails-2.1.0/actionpack/test/fixtures/developer.rb new file mode 100644 index 000000000..c70eda34c --- /dev/null +++ b/vendor/rails-2.1.0/actionpack/test/fixtures/developer.rb @@ -0,0 +1,9 @@ +class Developer < ActiveRecord::Base + has_and_belongs_to_many :projects + has_many :replies + has_many :topics, :through => :replies +end + +class DeVeLoPeR < ActiveRecord::Base + set_table_name "developers" +end |