summaryrefslogtreecommitdiff
path: root/lib/forever.rb
blob: 7df179125440dadf8fc451ef18e35e04b6d9d809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class Forever
  POSTGRESQL_DATE = DateTime.new(3000, 1, 1)
  MYSQL_DATE = DateTime.new(2038, 01, 19)

  # MySQL timestamp has a range of '1970-01-01 00:00:01' UTC to '2038-01-19 03:14:07' UTC
  def self.date
    if Gitlab::Database.postgresql?
      POSTGRESQL_DATE
    else
      MYSQL_DATE
    end
  end
end