Hi all,
Im having an issue regarding saving time in db.
First my requirement is -
1.I save current date and time in “Publish on” field.
- Now this should be changed to date and time based on user’s location
which will be stored.
For example, if user is in EST, The publish on date should be in EST
format.
I used this,
Time.parse(publish_on.to_s).in_time_zone(‘EST’)
Time.parse(publish_on.to_s).in_time_zone(‘MST’)
when i put the string, it shows time based on EST or MST.
But while storing the date, it stores in default time zone.
Can anyone suggest me in this on how to save different time zone in
rails?