Skip to content

Commit

Permalink
Use 1.8 hash style in pg specific schema
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosantoniodasilva committed Nov 28, 2012
1 parent 941f019 commit 26e8cb8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions activerecord/test/schema/postgresql_specific_schema.rb
Expand Up @@ -133,9 +133,9 @@
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

0 comments on commit 26e8cb8

Please sign in to comment.