aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorChristopher Meiklejohn <christopher.meiklejohn@gmail.com>2011-03-14 22:19:47 -0400
committerJon Leighton <j@jonathanleighton.com>2011-05-08 18:37:28 +0100
commit4fbd8adf4824d48aea47a57047d90fb6510cee28 (patch)
tree6db7a372616d0299d840bb632dfe132e730d919d /activerecord/test/schema
parenta45f300e5f2d6b6581dd0f0d0f650c83b9773170 (diff)
downloadrails-4fbd8adf4824d48aea47a57047d90fb6510cee28.tar.gz
rails-4fbd8adf4824d48aea47a57047d90fb6510cee28.tar.bz2
rails-4fbd8adf4824d48aea47a57047d90fb6510cee28.zip
Don't quote ID's as Arel will quote them -- follow same conventions as the delete method.
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/schema.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index 9479242e4f..c20304c0e2 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -543,6 +543,12 @@ ActiveRecord::Schema.define do
t.string :sponsorable_type
end
+ create_table :string_key_objects, :id => false, :primary_key => :id, :force => true do |t|
+ t.string :id
+ t.string :name
+ t.integer :lock_version, :null => false, :default => 0
+ end
+
create_table :students, :force => true do |t|
t.string :name
end