2019-02-15 15:39:39 +05:30
|
|
|
class AddProjectIdToSubscriptions < ActiveRecord::Migration[4.2]
|
2017-08-17 22:00:37 +05:30
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def up
|
|
|
|
add_column :subscriptions, :project_id, :integer
|
|
|
|
add_foreign_key :subscriptions, :projects, column: :project_id, on_delete: :cascade # rubocop: disable Migration/AddConcurrentForeignKey
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
remove_foreign_key :subscriptions, column: :project_id
|
|
|
|
remove_column :subscriptions, :project_id
|
|
|
|
end
|
|
|
|
end
|