0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 00:15:24 +08:00
discourse/lib/migration/helpers.rb

23 lines
413 B
Ruby
Vendored

# frozen_string_literal: true
module Migration
module Helpers
def self.site_created_at
result = DB.query_single <<~SQL
SELECT created_at
FROM schema_migration_details
ORDER BY created_at
LIMIT 1
SQL
result.first
end
def self.existing_site?
site_created_at < 1.hour.ago
end
def self.new_site?
!existing_site?
end
end
end