debian-mirror-gitlab/db/migrate/20171106171453_add_timezone_to_issues_closed_at.rb

21 lines
590 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
2019-02-15 15:39:39 +05:30
class AddTimezoneToIssuesClosedAt < ActiveRecord::Migration[4.2]
2018-03-17 18:26:18 +05:30
include Gitlab::Database::MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
disable_ddl_transaction!
def up
2018-11-18 11:00:15 +05:30
# rubocop:disable Migration/UpdateLargeTable
2018-03-17 18:26:18 +05:30
change_column_type_concurrently(:issues, :closed_at, :datetime_with_timezone)
end
def down
cleanup_concurrent_column_type_change(:issues, :closed_at)
end
end