diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-11-28 10:27:03 -0200 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-11-28 10:27:03 -0200 |
commit | 26e8cb88099fa43494ea9faf0c69c6f04e7919b1 (patch) | |
tree | 608dbf4fb48c866c06eeb78f83e8faa9a9958883 /activerecord | |
parent | 941f0196c6c8eade08bf19307bdbedaaeadbe291 (diff) | |
download | rails-26e8cb88099fa43494ea9faf0c69c6f04e7919b1.tar.gz rails-26e8cb88099fa43494ea9faf0c69c6f04e7919b1.tar.bz2 rails-26e8cb88099fa43494ea9faf0c69c6f04e7919b1.zip |
Use 1.8 hash style in pg specific schema
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/test/schema/postgresql_specific_schema.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/test/schema/postgresql_specific_schema.rb b/activerecord/test/schema/postgresql_specific_schema.rb index 35e12b1875..b2c655ddcd 100644 --- a/activerecord/test/schema/postgresql_specific_schema.rb +++ b/activerecord/test/schema/postgresql_specific_schema.rb @@ -133,9 +133,9 @@ _SQL rescue #This version of PostgreSQL either has no XML support or is was not compiled with XML support: skipping table end - create_table :limitless_fields, force: true do |t| - t.binary :binary, limit: 100_000 - t.text :text, limit: 100_000 + create_table :limitless_fields, :force => true do |t| + t.binary :binary, :limit => 100_000 + t.text :text, :limit => 100_000 end end |