Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユーザーが投稿 (ブログなど) を作成できるようにする Rails アプリケーションがあり、作成された日付を追加するにはどうすればよいか疑問に思いました。どうすればそれを追加できますか?
Railsは、移行を作成するときに、とタイムスタンプを自動的に作成し、エントリが作成/更新されるときにそれに応じて入力するtimestamps方法を提供します。create_tablecreated_atupdated_at
timestamps
create_table
created_at
updated_at
created_atすべての Rails モデルには、レコードが初めて保存されるときに常に更新されるデフォルトの列が既にあります。
post = Post.first puts post.created_at