Hi, this may be stupid question, I'm quite new to Rails, so some things are not obvious to me.
My notifications table has some additional columns that I need to save data to. Main is content_message column, which I need to be the same as :content value. I'm unable to set this, tried:
Hi, this may be stupid question, I'm quite new to Rails, so some things are not obvious to me.
My
notifications
table has some additional columns that I need to save data to. Main iscontent_message
column, which I need to be the same as:content
value. I'm unable to set this, tried:.with(announcement:, content: 'created', content_message: 'created')
before_delivery
before_validate
Thanks for help!