diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2016-03-04 06:43:16 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2016-03-04 06:58:24 +0900 |
commit | 45f06a7ce88e4589bccc9679ff3b44ea8690af89 (patch) | |
tree | 70e816ea18a3d06a3cdc2697e64a191538a6ef12 /activerecord/lib | |
parent | daeaac702795f2ab6bb882abef1a349b1b799b22 (diff) | |
download | rails-45f06a7ce88e4589bccc9679ff3b44ea8690af89.tar.gz rails-45f06a7ce88e4589bccc9679ff3b44ea8690af89.tar.bz2 rails-45f06a7ce88e4589bccc9679ff3b44ea8690af89.zip |
Remove outdated comment [ci skip]
Currently column options handled by the type map in Rails 4.2.
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb | 1 |
1 files changed, 0 insertions, 1 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 67e727d8ed..0579c1a92e 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb @@ -214,7 +214,6 @@ module ActiveRecord # Returns the list of all column definitions for a table. def columns(table_name) - # Limit, precision, and scale are all handled by the superclass. column_definitions(table_name).map do |column_name, type, default, notnull, oid, fmod, collation| oid = oid.to_i fmod = fmod.to_i |