jeremyevans / rodauth

Ruby's Most Advanced Authentication Framework
http://rodauth.jeremyevans.net
MIT License
1.67k stars 95 forks source link

Add citext creation to migration in readme #241

Closed greenfork closed 2 years ago

greenfork commented 2 years ago

Otherwise it complains that can't find this data type.

jeremyevans commented 2 years ago

Needing to load the citext extension is mentioned earlier in the README (http://rodauth.jeremyevans.net/rdoc/files/README_rdoc.html#label-Load+extensions). It's not in the migration because it requires database superuser permissions, and we don't want to encourage anyone running using a database superuser account for their application (it's a really bad idea from a security perspective).

greenfork commented 2 years ago

I see, thank you for explaining.