79
67

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

RailsのTimezone設定をUTCからJSTに変えたい時

Last updated at Posted at 2015-03-09

RailsのDefault設定で時間を画面出力するとこうなる。

DefaultTimeZone

2ヶ月前 (2015-01-03 01:48:24 UTC)

時間を変更する方法には2種類存在する。

  1. DBの保存時間を変更する
  2. 表示のみをUST→JSTにする

DB保管は変えずに表示のみを変えた方が良さげに感じるので、僕は2.を利用しました。

#1. DBの保存時間を変更する

config/application.rb

config.active_record.default_timezone = :local

#2. 表示のみをUST→JSTにする

config/application.rb

config.time_zone = 'Tokyo'

JSTTimeZone

2ヶ月前 (2015-01-03 10:48:24 +0900)

参考

おまけ

2ヶ月前と記載があるけど、これもrailsの機能で自動的に現在時間から変換をかけてくれる。

distance_of_time_in_words

<%= distance_of_time_in_words_to_now(tweet.tweeted_at) %>

こんな感じで使いましょう。

♡Rails

79
67
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
79
67

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?