diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2017-03-01 16:19:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-01 16:19:41 -0500 |
commit | 22e33e464c81167633c7d1e5aac3b9dd4bf5fc1f (patch) | |
tree | 3d77466777a78589e494084df3c6e8095c5a1b86 /activerecord/lib | |
parent | 88857f33956512270bbc410fd006f07075ee09d9 (diff) | |
parent | a3b16b955f053663feed41d938ba0d42363b2097 (diff) | |
download | rails-22e33e464c81167633c7d1e5aac3b9dd4bf5fc1f.tar.gz rails-22e33e464c81167633c7d1e5aac3b9dd4bf5fc1f.tar.bz2 rails-22e33e464c81167633c7d1e5aac3b9dd4bf5fc1f.zip |
Merge pull request #28220 from kamipo/valid_type_accept_only_supported_types
`valid_type?` should accept only supported types
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb b/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb index 285b0ec243..8b627a6d4d 100644 --- a/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb @@ -158,10 +158,6 @@ module ActiveRecord true end - def valid_type?(type) # :nodoc: - true - end - # Returns 62. SQLite supports index names up to 64 # characters. The rest is used by Rails internally to perform # temporary rename operations |