summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-05-16 13:43:56 +0000
committerStan Hu <stanhu@gmail.com>2019-05-16 13:43:56 +0000
commit542b2a7e356272cfdc3037b788d7e15b2f8739ac (patch)
tree53a96440d77ad41a17639f9bcffff50ba6ac85cb /db
parent167b7641a56804f819c01d04818c5b8d8269aa6d (diff)
parent9618141dc73ce24da521e2305eed613889879d73 (diff)
downloadgitlab-ce-542b2a7e356272cfdc3037b788d7e15b2f8739ac.tar.gz
Merge branch 'fix_failure_migrate_on_mysql8' into 'master'
Fix. db:migrate is failed on MySQL 8 See merge request gitlab-org/gitlab-ce!28351
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20150509180749_convert_legacy_reference_notes.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/migrate/20150509180749_convert_legacy_reference_notes.rb b/db/migrate/20150509180749_convert_legacy_reference_notes.rb
index a44a908c2f5..84d4eb9e51f 100644
--- a/db/migrate/20150509180749_convert_legacy_reference_notes.rb
+++ b/db/migrate/20150509180749_convert_legacy_reference_notes.rb
@@ -7,7 +7,8 @@
# mentioned in 54f7727c850972f0401c1312a7c4a6a380de5666
class ConvertLegacyReferenceNotes < ActiveRecord::Migration[4.2]
def up
- execute %q{UPDATE notes SET note = trim(both '_' from note) WHERE system = true AND note LIKE '\_%\_'}
+ quoted_column_name = ActiveRecord::Base.connection.quote_column_name('system')
+ execute %Q{UPDATE notes SET note = trim(both '_' from note) WHERE #{quoted_column_name} = true AND note LIKE '\_%\_'}
end
def down