28 October 2017

https://www.postgresql.org/docs/9.4/static/citext.html

Rails migration example:

class CreateAddress < ActiveRecord::Migration
  def change
    create_table :addresses, id: :uuid do |t|
      t.citext :name
      t.string :address

      t.timestamps null: false
      t.references :user, type: :uuid, index: true
    end
  end
end