aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2010-04-14 18:15:27 +0100
committerJosé Valim <jose.valim@gmail.com>2010-04-25 16:04:38 +0200
commit8ec085bf1804770a547894967fcdee24087fda87 (patch)
tree41cb3f488ec760649ad4b3be694652aa5a26641f /activerecord/test/schema
parent77c099c231f2efb36a2a77a32138ed5c6761ec19 (diff)
downloadrails-8ec085bf1804770a547894967fcdee24087fda87.tar.gz
rails-8ec085bf1804770a547894967fcdee24087fda87.tar.bz2
rails-8ec085bf1804770a547894967fcdee24087fda87.zip
Support fixtures for namespaced models [#2965 state:resolved]
Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/schema.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index 7a0cf550e0..f5fba2f87d 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -26,6 +26,15 @@ ActiveRecord::Schema.define do
t.integer :credit_limit
end
+ create_table :admin_accounts, :force => true do |t|
+ t.string :name
+ end
+
+ create_table :admin_users, :force => true do |t|
+ t.string :name
+ t.references :account
+ end
+
create_table :audit_logs, :force => true do |t|
t.column :message, :string, :null=>false
t.column :developer_id, :integer, :null=>false