Are you trying to use the same literal time (i.e. 10:56 ET and 10:56 PT) regardless of time zone?
Or are you trying to ensure that queries refer to the same exact time (e.g. 10:56 ET and 7:56 PT)?
In the first case (the same literal time), simply omit %z or %z from the strftime argument.
For the latter, I would recommend using Unix timestamps with the Ruby time.to_i function and the MySQL function FROM_UNIXTIME()
source share