diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-03-11 08:27:59 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-03-11 08:27:59 +0100 |
commit | 3f5339f48e3ce3eb40eb51fb1b686914a719a26a (patch) | |
tree | f13548cf09b52568d078e0ba776067f02757fd04 /activerecord/lib/active_record | |
parent | 0e0b41d58c0a8e5921b7eebc3a6e0e4cc012ce4d (diff) | |
download | rails-3f5339f48e3ce3eb40eb51fb1b686914a719a26a.tar.gz rails-3f5339f48e3ce3eb40eb51fb1b686914a719a26a.tar.bz2 rails-3f5339f48e3ce3eb40eb51fb1b686914a719a26a.zip |
`change_table` supports `citext`. Follow up to #12523.
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb index f7b053aec6..e5f7913c70 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb @@ -355,6 +355,10 @@ module ActiveRecord def json(name, options = {}) column(name, 'json', options) end + + def citext(name, options = {}) + column(name, 'citext', options) + end end class TableDefinition < ActiveRecord::ConnectionAdapters::TableDefinition |