エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Rails 7.1 adds ActiveRecord::Base::normalizes
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Rails 7.1 adds ActiveRecord::Base::normalizes
Rails 7.1 has introduced a new method in Active Record that can be used to declare normalizations... Rails 7.1 has introduced a new method in Active Record that can be used to declare normalizations for attribute values. This can be especially useful for sanitizing user input, ensuring consistent formatting, or cleaning up data from external sources. Before Rails 7.1, you could normalize attributes using before_save callback. 1model User < ApplicationRecord 2 before_save :downcase_email, if :emai