aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-04-13 15:35:53 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2011-04-14 13:37:39 -0700
commita0d4c8d1bf2198608e2e319ff833560f88d20855 (patch)
tree89c102800b139109bd3385ed0fed2d2d84e00c82 /activerecord/test/schema
parent27f8c57f5f88304212a00cb8e32f8227755a7265 (diff)
downloadrails-a0d4c8d1bf2198608e2e319ff833560f88d20855.tar.gz
rails-a0d4c8d1bf2198608e2e319ff833560f88d20855.tar.bz2
rails-a0d4c8d1bf2198608e2e319ff833560f88d20855.zip
using the database adapter to typecast before executing prepared statement
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/schema.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index 362475de36..ceadb05644 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -67,6 +67,7 @@ ActiveRecord::Schema.define do
end
create_table :binaries, :force => true do |t|
+ t.string :name
t.binary :data
end