pow-auth / pow

Robust, modular, and extendable user authentication system
https://powauth.com
MIT License
1.59k stars 153 forks source link

Add support for Ecto v3.8.0 #665

Closed deepankar-j closed 2 years ago

deepankar-j commented 2 years ago

Ecto v3.8.0 throws an error when it encounters unsupported options. It turns out that :null isn't a valid field option.

deepankar-j commented 2 years ago

@danschultzer : Please let me know if you have any questions or concerns about this change.

danschultzer commented 2 years ago

Thanks! I've released v1.0.27 that resolves this issue. The null: false was still required to make sure that the generated migration has it.

deepankar-j commented 2 years ago

Ah, I see. Thanks @danschultzer!