summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2017-07-01 02:08:28 +0800
committerLin Jen-Shin <godfat@godfat.org>2017-07-01 02:08:28 +0800
commitcf996b446457318e6f73cd64ced5f4f7bf30d68d (patch)
tree158c9de11589272c5546593c8f541811c0dfe789 /db
parent057c3c4e31df9dc8b1866b185dbf6d89e2751e3c (diff)
downloadgitlab-ce-cf996b446457318e6f73cd64ced5f4f7bf30d68d.tar.gz
We don't need to disable transaction in this case
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20160804142904_add_ci_config_file_to_project.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/db/migrate/20160804142904_add_ci_config_file_to_project.rb b/db/migrate/20160804142904_add_ci_config_file_to_project.rb
index 4b9860c5f74..674a22ae8f3 100644
--- a/db/migrate/20160804142904_add_ci_config_file_to_project.rb
+++ b/db/migrate/20160804142904_add_ci_config_file_to_project.rb
@@ -1,13 +1,6 @@
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
class AddCiConfigFileToProject < ActiveRecord::Migration
- include Gitlab::Database::MigrationHelpers
-
DOWNTIME = false
- disable_ddl_transaction!
-
def change
add_column :projects, :ci_config_file, :string
end