summaryrefslogtreecommitdiff
path: root/db/migrate/20170913131410_environments_project_id_not_null.rb
blob: ba66113945bef847a5e4818c2bd0961be72b59d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class EnvironmentsProjectIdNotNull < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    change_column_null :environments, :project_id, false
  end

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