aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2009-01-29 22:33:09 +0000
committerPratik Naik <pratiknaik@gmail.com>2009-01-29 22:33:09 +0000
commit20d850dac78fc11512a6ad9f3d2ad397daac3e87 (patch)
treed982ec813560600d21edfe3ad1597d2c83af1df1 /activerecord/test/schema
parent6932ae4b2978de6771e6d1c84cfc3595cf9d8bab (diff)
parentb3bc4fa5e02e71a992f8a432757548c762f0aad8 (diff)
downloadrails-20d850dac78fc11512a6ad9f3d2ad397daac3e87.tar.gz
rails-20d850dac78fc11512a6ad9f3d2ad397daac3e87.tar.bz2
rails-20d850dac78fc11512a6ad9f3d2ad397daac3e87.zip
Merge commit 'mainstream/master'
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/schema.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index 094932d375..d44faf04cc 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -154,6 +154,11 @@ ActiveRecord::Schema.define do
t.string :name
end
+ create_table :goofy_string_id, :force => true, :id => false do |t|
+ t.string :id, :null => false
+ t.string :info
+ end
+
create_table :items, :force => true do |t|
t.column :name, :integer
end