Đường ray 4.2+
Rails 4.2 có hỗ trợ riêng cho citext
loại cột.
Đường ray <4.2
Nếu đang sử dụng Rails <4.2, bạn có thể thử sử dụng activerecord-postgresql-citext đá quý.
Điều này cho phép bạn viết các di chuyển như sau:
def up
enable_extension("citext")
create_table :models, :force => true do |t|
t.citext :name
t.timestamps
end
end