From 26e8cb88099fa43494ea9faf0c69c6f04e7919b1 Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Wed, 28 Nov 2012 10:27:03 -0200 Subject: Use 1.8 hash style in pg specific schema --- activerecord/test/schema/postgresql_specific_schema.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'activerecord/test') 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 -- cgit v1.2.3