21700: Install Bundler system-wide in Rails postinst
[arvados.git] / services / api / lib / db_current_time.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 module DbCurrentTime
6   CURRENT_TIME_SQL = "SELECT clock_timestamp() AT TIME ZONE 'UTC'"
7
8   def db_current_time
9     ActiveRecord::Base.connection.select_value(CURRENT_TIME_SQL)
10   end
11
12   def db_transaction_time
13     ActiveRecord::Base.connection.select_value("SELECT current_timestamp AT TIME ZONE 'UTC'")
14   end
15 end