Skip to content

Instantly share code, notes, and snippets.

@danmartens
Created April 12, 2014 14:28
Show Gist options
  • Save danmartens/10538458 to your computer and use it in GitHub Desktop.
Save danmartens/10538458 to your computer and use it in GitHub Desktop.
Arel Timezone Offset Predication
module Arel
module Predications
def tz_offset(offset)
Nodes::InfixOperation.new('AT TIME ZONE INTERVAL', self, offset)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment