रेल 4.2+
रेल 4.2 में citext
. के लिए मूल समर्थन है स्तंभ प्रकार।
रेल <4.2
यदि आप रेल <4.2 का उपयोग कर रहे हैं, तो आप activerecord-postgresql-citextका उपयोग करके देख सकते हैं। ए> रत्न
यह आपको इस तरह से माइग्रेशन लिखने की अनुमति देता है:
def up
enable_extension("citext")
create_table :models, :force => true do |t|
t.citext :name
t.timestamps
end
end