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/20160830232601_change_lock_version_not_null.rb')
-rw-r--r--db/migrate/20160830232601_change_lock_version_not_null.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20160830232601_change_lock_version_not_null.rb b/db/migrate/20160830232601_change_lock_version_not_null.rb
deleted file mode 100644
index 1e34b57e53f..00000000000
--- a/db/migrate/20160830232601_change_lock_version_not_null.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-class ChangeLockVersionNotNull < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- def up
- change_column_null :issues, :lock_version, true
- change_column_null :merge_requests, :lock_version, true
- end
-
- def down
- end
-end