classFixDevTimezoneSchema<ActiveRecord::MigrationincludeGitlab::Database::MigrationHelpers# The this migrations tries to help solve unwanted changes to `schema.rb`# while developing GitLab. Installations created before we started using# `datetime_with_timezone` are likely to face this problem. Updating those# columns to the new type should help fix this.# Set this constant to true if this migration requires downtime.DOWNTIME=falseTIMEZONE_TABLES=%i(appearances ci_group_variables ci_pipeline_schedule_variables events gpg_keys gpg_signatures project_auto_devops)defupreturnunlessRails.env.development?||Rails.env.test?TIMEZONE_TABLES.eachdo|table|change_columntable,:created_at,:datetime_with_timezonechange_columntable,:updated_at,:datetime_with_timezoneendenddefdownendend