aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema/schema.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-05-11 12:01:08 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-05-11 12:20:54 -0700
commitddbeb15a5e7e0c3c5f316ccf65b557bc5311a6c4 (patch)
tree96af79cc6a1fbf6be739102bd2afeec1f2df7ef6 /activerecord/test/schema/schema.rb
parente1854e0b199fba352ddcaa58a3af168e8cc70e3a (diff)
downloadrails-ddbeb15a5e7e0c3c5f316ccf65b557bc5311a6c4.tar.gz
rails-ddbeb15a5e7e0c3c5f316ccf65b557bc5311a6c4.tar.bz2
rails-ddbeb15a5e7e0c3c5f316ccf65b557bc5311a6c4.zip
Revert "Fixed bug with polymorphic has_one :as pointing to an STI record"
[#2594 state:open] This reverts commit 99c103be1165da9c8299bc0977188ecf167e06a5.
Diffstat (limited to 'activerecord/test/schema/schema.rb')
-rw-r--r--activerecord/test/schema/schema.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index 6fb918c60e..a776cd974b 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -284,7 +284,6 @@ ActiveRecord::Schema.define do
create_table :organizations, :force => true do |t|
t.string :name
- t.string :type
end
create_table :owners, :primary_key => :owner_id ,:force => true do |t|
@@ -390,7 +389,7 @@ ActiveRecord::Schema.define do
create_table :sponsors, :force => true do |t|
t.integer :club_id
t.integer :sponsorable_id
- t.string :sponsorable_type
+ t.string :sponsorable_type
end
create_table :subscribers, :force => true, :id => false do |t|