heartcombo / devise

Flexible authentication solution for Rails with Warden.
http://blog.plataformatec.com.br/tag/devise/
MIT License
23.91k stars 5.54k forks source link

Devise and Hstore for Postgres #2532

Closed shenoudab closed 11 years ago

shenoudab commented 11 years ago

Dears,

is there any plans for devise to strongly support hstore of postgres as follow:

Instead of the current default in migration file of devise

  ## Confirmable
  t.string   :confirmation_token
  t.datetime :confirmed_at
  t.datetime :confirmation_sent_at
  t.string   :unconfirmed_email

to be hstore supported as follow:

Confirmable

  t.hstore   :confirmation

and represented in db as follow :

     confirmation: {
              token,
              sent_at,
              confirmed_at,
              unconfirmed_email
       }

Regards, Shenouda Bertel

josevalim commented 11 years ago

No, there are no plans. :)