debian-mirror-gitlab/db/migrate/20160919145149_add_group_id_to_labels.rb

21 lines
598 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
# rubocop:disable RemoveIndex
2019-02-15 15:39:39 +05:30
class AddGroupIdToLabels < ActiveRecord::Migration[4.2]
2016-11-03 12:29:30 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
2017-08-17 22:00:37 +05:30
def up
2016-11-03 12:29:30 +05:30
add_column :labels, :group_id, :integer
2017-08-17 22:00:37 +05:30
add_foreign_key :labels, :namespaces, column: :group_id, on_delete: :cascade # rubocop: disable Migration/AddConcurrentForeignKey
2016-11-03 12:29:30 +05:30
add_concurrent_index :labels, :group_id
end
2017-08-17 22:00:37 +05:30
def down
remove_foreign_key :labels, column: :group_id
remove_index :labels, :group_id if index_exists? :labels, :group_id
remove_column :labels, :group_id
end
2016-11-03 12:29:30 +05:30
end