gitlab-ce/scripts/validate_migration_timestamps

13 lines
224 B
Ruby
Executable File

#!/usr/bin/env ruby
# frozen_string_literal: true
require_relative './database/migration_timestamp_checker'
result = MigrationTimestampChecker.new.check
if result
puts result.error_message
exit result.error_code
end