ankane / authtrail

Track Devise login activity

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rubocop issue

alec-c4 opened this issue · comments

Hey!
I've found that migration is having the following issue with a rubocop - Rails/ThreeStateBooleanColumn in this line

      t.boolean :success

I've fixed it with following

      t.boolean :success, null: false, default: true

But it looks like there are possible false negative cases, what do you think?

Hi @alec-c4, thanks for sharing. However, I don't think a change is needed.