summaryrefslogtreecommitdiff
path: root/db/migrate/20170913131410_environments_project_id_not_null.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170913131410_environments_project_id_not_null.rb')
-rw-r--r--db/migrate/20170913131410_environments_project_id_not_null.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/db/migrate/20170913131410_environments_project_id_not_null.rb b/db/migrate/20170913131410_environments_project_id_not_null.rb
deleted file mode 100644
index ba66113945b..00000000000
--- a/db/migrate/20170913131410_environments_project_id_not_null.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# 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