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

20170913131410_environments_project_id_not_null.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5404f8ede9989b5947537489e713b1cf517fabb (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
  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