I'd like to create the following and set is_seen to false explicitly.
rails g model notification body: text, user_id: integer, is_seen: boolean
I know how to update this alter via a change_column but how would I set this to false at this point?
This is not for a migration but from creating a model.