summaryrefslogtreecommitdiff
path: root/db/migrate
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2017-09-13 15:16:24 +0200
committerYorick Peterse <yorickpeterse@gmail.com>2017-09-13 15:17:42 +0200
commit9230caa907156354d6b9889eee1c4e30a4737471 (patch)
treead92f52a3e70f1fd4774d4fa219ec1b684eaa847 /db/migrate
parentf04094a4f8f8c307d05d3e8571cfcd44c586c599 (diff)
downloadgitlab-ce-9230caa907156354d6b9889eee1c4e30a4737471.tar.gz
Disallow NULL values for environments.project_idci-environment-status-performance
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20170913131410_environments_project_id_not_null.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/db/migrate/20170913131410_environments_project_id_not_null.rb b/db/migrate/20170913131410_environments_project_id_not_null.rb
new file mode 100644
index 00000000000..d5404f8ede9
--- /dev/null
+++ b/db/migrate/20170913131410_environments_project_id_not_null.rb
@@ -0,0 +1,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