diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-11-28 11:11:11 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-11-28 12:02:11 -0200 |
commit | f036862c0fa0377c78007daf7b79715f5cb8ff32 (patch) | |
tree | a26601e05ee05c9b8844dbfd10fa083c70e7d274 /activerecord/test/schema | |
parent | f3aaf6d7d192eeead15458e2d042811b9681dd9c (diff) | |
download | rails-f036862c0fa0377c78007daf7b79715f5cb8ff32.tar.gz rails-f036862c0fa0377c78007daf7b79715f5cb8ff32.tar.bz2 rails-f036862c0fa0377c78007daf7b79715f5cb8ff32.zip |
Add comment to a table without model.
This table is being used to verify if the :limit options is being
ignored for text and binary columns
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r-- | activerecord/test/schema/postgresql_specific_schema.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/schema/postgresql_specific_schema.rb b/activerecord/test/schema/postgresql_specific_schema.rb index 0cfde83778..775a1208b7 100644 --- a/activerecord/test/schema/postgresql_specific_schema.rb +++ b/activerecord/test/schema/postgresql_specific_schema.rb @@ -193,6 +193,7 @@ _SQL rescue #This version of PostgreSQL either has no XML support or is was not compiled with XML support: skipping table end + # This table is to verify if the :limit option is being ignored for text and binary columns create_table :limitless_fields, force: true do |t| t.binary :binary, limit: 100_000 t.text :text, limit: 100_000 |