summaryrefslogtreecommitdiff
path: root/db/migrate/20180512061621_add_not_null_constraint_to_project_features_project_id.rb
blob: 5a6d6ff4a1091e5743c376030c837329a86dbbe4 (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
  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