summaryrefslogtreecommitdiff
path: root/db/migrate/20210312174321_add_enforced_git_check_to_saml_provider.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210312174321_add_enforced_git_check_to_saml_provider.rb')
-rw-r--r--db/migrate/20210312174321_add_enforced_git_check_to_saml_provider.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20210312174321_add_enforced_git_check_to_saml_provider.rb b/db/migrate/20210312174321_add_enforced_git_check_to_saml_provider.rb
deleted file mode 100644
index 89553a53084..00000000000
--- a/db/migrate/20210312174321_add_enforced_git_check_to_saml_provider.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class AddEnforcedGitCheckToSamlProvider < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- def up
- add_column :saml_providers, :git_check_enforced, :boolean, default: false, null: false
- end
-
- def down
- remove_column :saml_providers, :git_check_enforced
- end
-end