diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2008-04-30 15:04:08 -0500 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2008-04-30 15:04:08 -0500 |
commit | c353794dff580c8aa63b357b2857c1fadff3104b (patch) | |
tree | b57794919c8eabd9d928b44a15342784f4b4215b /activerecord/test/schema | |
parent | 5cef8bcc549bf714c1c73e658fd96d5fea0fab84 (diff) | |
download | rails-c353794dff580c8aa63b357b2857c1fadff3104b.tar.gz rails-c353794dff580c8aa63b357b2857c1fadff3104b.tar.bz2 rails-c353794dff580c8aa63b357b2857c1fadff3104b.zip |
Fixed that pessimistic locking you reference the quoted table name (Josh Susser) [#67 state:resolved]
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r-- | activerecord/test/schema/schema.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb index a9b2073b37..e22b78749c 100644 --- a/activerecord/test/schema/schema.rb +++ b/activerecord/test/schema/schema.rb @@ -206,6 +206,7 @@ ActiveRecord::Schema.define do t.integer :person_id t.integer :job_id t.boolean :favourite + t.integer :lock_version, :default => 0 end create_table :minimalistics, :force => true do |t| |