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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160715154212_add_request_access_enabled_to_projects.rb')
-rw-r--r--db/migrate/20160715154212_add_request_access_enabled_to_projects.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20160715154212_add_request_access_enabled_to_projects.rb b/db/migrate/20160715154212_add_request_access_enabled_to_projects.rb
deleted file mode 100644
index 96260f5fd55..00000000000
--- a/db/migrate/20160715154212_add_request_access_enabled_to_projects.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# rubocop:disable Migration/UpdateLargeTable
-class AddRequestAccessEnabledToProjects < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
- disable_ddl_transaction!
-
- def up
- add_column_with_default :projects, :request_access_enabled, :boolean, default: true
- end
-
- def down
- remove_column :projects, :request_access_enabled
- end
-end