diff options
author | Juanito Fatas <katehuang0320@gmail.com> | 2015-03-03 00:05:56 +0800 |
---|---|---|
committer | Juanito Fatas <katehuang0320@gmail.com> | 2015-03-03 00:09:11 +0800 |
commit | 7031dfcb0f1a0b0c2d4fca9c0206db8991f42952 (patch) | |
tree | bdc88d43615ec9ca71ee7591a964c16aca4e0dbf /activerecord/lib | |
parent | 2675a57fc3071c49ba8276c50f29dde3d427bc7f (diff) | |
download | rails-7031dfcb0f1a0b0c2d4fca9c0206db8991f42952.tar.gz rails-7031dfcb0f1a0b0c2d4fca9c0206db8991f42952.tar.bz2 rails-7031dfcb0f1a0b0c2d4fca9c0206db8991f42952.zip |
[ci skip] Fix a typo for PostgreSQL text limit, GB instead of Gb.
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb b/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb index 75b9d079bd..eeb141dd1e 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb @@ -514,14 +514,14 @@ module ActiveRecord sql = case type.to_s when 'binary' # PostgreSQL doesn't support limits on binary (bytea) columns. - # The hard limit is 1Gb, because of a 32-bit size field, and TOAST. + # The hard limit is 1GB, because of a 32-bit size field, and TOAST. case limit when nil, 0..0x3fffffff; super(type) else raise(ActiveRecordError, "No binary type has byte size #{limit}.") end when 'text' # PostgreSQL doesn't support limits on text columns. - # The hard limit is 1Gb, according to section 8.3 in the manual. + # The hard limit is 1GB, according to section 8.3 in the manual. case limit when nil, 0..0x3fffffff; super(type) else raise(ActiveRecordError, "The limit on text can be at most 1GB - 1byte.") |