2018-07-24 21:16:36 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-02-21 07:09:07 -05:00
|
|
|
# See https://docs.gitlab.com/ee/development/migration_style_guide.html
|
2016-10-27 08:36:53 -04:00
|
|
|
# for more information on how to write migrations for GitLab.
|
|
|
|
|
2018-11-14 07:52:32 -05:00
|
|
|
class <%= migration_class_name %> < ActiveRecord::Migration[<%= ActiveRecord::Migration.current_version %>]
|
2020-02-18 16:09:11 -05:00
|
|
|
# Uncomment the following include if you require helper functions:
|
|
|
|
# include Gitlab::Database::MigrationHelpers
|
2016-10-27 08:36:53 -04:00
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
2017-04-05 18:53:57 -04:00
|
|
|
# When using the methods "add_concurrent_index", "remove_concurrent_index" or
|
|
|
|
# "add_column_with_default" you must disable the use of transactions
|
|
|
|
# as these methods can not run in an existing transaction.
|
|
|
|
# When using "add_concurrent_index" or "remove_concurrent_index" methods make sure
|
|
|
|
# that either of them is the _only_ method called in the migration,
|
|
|
|
# any other changes should go in a separate migration.
|
|
|
|
# This ensures that upon failure _only_ the index creation or removing fails
|
|
|
|
# and can be retried or reverted easily.
|
2016-10-27 08:36:53 -04:00
|
|
|
#
|
|
|
|
# To disable transactions uncomment the following line and remove these
|
|
|
|
# comments:
|
|
|
|
# disable_ddl_transaction!
|
|
|
|
|
|
|
|
def change
|
|
|
|
end
|
|
|
|
end
|