aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema/schema.rb
diff options
context:
space:
mode:
authorEmilio Tagua <miloops@gmail.com>2009-05-05 10:14:28 -0300
committerEmilio Tagua <miloops@gmail.com>2009-05-05 10:14:28 -0300
commita83a1ccebaaae5e05741ebd5d9db408c450df098 (patch)
tree79dc5924ce11481674180e1d216ec6551e634011 /activerecord/test/schema/schema.rb
parentd19d4d2f20d87289eaeaa8df807d635ce72f3799 (diff)
parentd4402c5554a0d3202fc22eb38c5c1a8c4b9afd93 (diff)
downloadrails-a83a1ccebaaae5e05741ebd5d9db408c450df098.tar.gz
rails-a83a1ccebaaae5e05741ebd5d9db408c450df098.tar.bz2
rails-a83a1ccebaaae5e05741ebd5d9db408c450df098.zip
Merge commit 'rails/master'
Diffstat (limited to 'activerecord/test/schema/schema.rb')
-rw-r--r--activerecord/test/schema/schema.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index 6918a4fcab..3b0e17c867 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -468,6 +468,26 @@ ActiveRecord::Schema.define do
end
end
+ # NOTE - the following 4 tables are used by models that have :inverse_of options on the associations
+ create_table :men, :force => true do |t|
+ t.string :name
+ end
+
+ create_table :faces, :force => true do |t|
+ t.string :description
+ t.integer :man_id
+ end
+
+ create_table :interests, :force => true do |t|
+ t.string :topic
+ t.integer :man_id
+ t.integer :zine_id
+ end
+
+ create_table :zines, :force => true do |t|
+ t.string :title
+ end
+
except 'SQLite' do
# fk_test_has_fk should be before fk_test_has_pk
create_table :fk_test_has_fk, :force => true do |t|