Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20180512061621_add_not_null_constraint_to_project_features_project_id.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e3abbc039e8a713d03ab9e4fc373dc49d8f54229 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class AddNotNullConstraintToProjectFeaturesProjectId < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  class ProjectFeature < ActiveRecord::Base
    include EachBatch

    self.table_name = 'project_features'
  end

  def up
    ProjectFeature.where(project_id: nil).delete_all

    change_column_null :project_features, :project_id, false
  end

  def down
    change_column_null :project_features, :project_id, true
  end
end